Hide Online for Whatsapp Web
Hide Your Online Status on WhatsApp Web
Was ist Hide Online for Whatsapp Web?
Hide Online for Whatsapp Web ist eine Chrome-Erweiterung, die von Odin entwickelt wurde, und ihr Hauptmerkmal ist "Hide Your Online Status on WhatsApp Web".
Erweiterungsscreenshots
Hide Online for Whatsapp Web-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide Online for Whatsapp Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
With this extension, you can protect your privacy by hiding your online status on Whatsapp Web. At the same time, by disabling read notifications, the other party cannot see your read notifications while you see the other party's read notifications.
Grundlegende Informationen zur Erweiterung
Name | Hide Online for Whatsapp Web |
ID | jcneeahkklelmgmdhakianajbmolceai |
Offizielle URL | https://chromewebstore.google.com/detail/hide-online-for-whatsapp/jcneeahkklelmgmdhakianajbmolceai |
Beschreibung | Hide Your Online Status on WhatsApp Web |
Dateigröße | 38.09 KB |
Installationsanzahl | 1,079 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-08-01 |
Veröffentlichungsdatum | 2021-08-01 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | Odin |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Online for Whatsapp Web", "description": "Hide Your Online Status on WhatsApp Web", "version": "1.0", "icons": { "16": "icon-32.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "run_at": "document_start", "js": [ "ws_commons.js", "main_wphideonline.js" ] } ], "page_action": { "default_icon": "icon-48.png", "default_title": "Hide Online for Whatsapp Web", "default_popup": "options.html" }, "permissions": [ "https:\/\/web.whatsapp.com\/*", "declarativeContent", "storage" ], "externally_connectable": { "matches": [ "*:\/\/web.whatsapp.com\/*" ] } } |