WAIncognito

Be invisible on WhatsApp™ Web by disabling read receipts and presence updates

WAIncognitoคืออะไร?

WAIncognito เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tomer และคุณลักษณะหลักของมันคือ "Be invisible on WhatsApp™ Web by disabling read receipts and presence updates"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WAIncognito

ดาวน์โหลดไฟล์ส่วนขยาย WAIncognito ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        See other people's read receipts, but control when you send yours. 
Freely explore any chat thread or status without making it read, even for groups. And additionally, nobody knows you're online if you don't want to.

FEATURES
--------
+ Adds a new menu in WhatsApp™ Web that lets you toggle on and off the sending of:
   - Read receipts for messages (two blue ticks mark)
   - "Last Seen" updates (presence) and "typing"
+ Works for groups
+ Works for statuses/stories
+ Restores all deleted messages
+ See if a message was sent from a phone or a computer
+ Lets you download statuses
+ When read receipts are blocked, the unread messages counteres show up transperent, and when you read them they turn red. This helps to tell when you are in invisible mode and it is safe to click on chats.

+ If you want to mark a spesific chat as read anyway, you can open the sub-menu of it and choose "mark as read". A warning will show up and when you confirm, a read receipt will be sent.

GitHub repo: 
https://github.com/tomer8007/whats-incognito

PRIVACY
--------
No data is ever transmitted to anywhere. 
Privacy Policy here: https://github.com/tomer8007/whatsapp-web-incognito/wiki/Chrome-Extension-Privacy-Policy

————————————————————
LEGAL
————————————————————

WhatsApp is a trademark of WhatsApp Inc., registered in the U.S. and other countries. This extension is an independent project developed by Tomer H. and has no relationship to WhatsApp or WhatsApp Inc.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WAIncognito WAIncognito
ID alhmbbnlcggfcjjfihglopfopcbigmil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil
คำอธิบาย Be invisible on WhatsApp™ Web by disabling read receipts and presence updates
ขนาดไฟล์ 417 KB
จำนวนการติดตั้ง 106,740
เวอร์ชันปัจจุบัน 2.1.4
อัปเดตครั้งล่าสุด 2024-03-01
วันที่เผยแพร่ 2020-07-01
คะแนน 3.63/5 รวมทั้งหมด 237 คะแนน
ผู้พัฒนา Tomer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tomer8007/whatsapp-web-incognito
URL หน้าช่วยเหลือ https://github.com/tomer8007/whatsapp-web-incognito
URL หน้านโยบายความเป็นส่วนตัว https://github.com/tomer8007/whatsapp-web-incognito/wiki/Chrome-Extension-Privacy-Policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WAIncognito",
    "short_name": "WAIncognito",
    "description": "Be invisible on WhatsApp\u2122 Web by disabling read receipts and presence updates",
    "version": "2.1.4",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128_blue.png"
    },
    "action": {
        "default_icon": "images\/icon_128_reshaped.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/web.whatsapp.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "core_injection.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "core\/ui_class_names.js",
                "core\/ui.js",
                "lib\/drop.js",
                "lib\/sweetalert.min.js",
                "core\/status_download.js"
            ],
            "css": [
                "styles.css",
                "lib\/css\/drop-theme-basic.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/*",
                "core\/*",
                "images\/*"
            ],
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ]
        }
    ]
}