Web Messenger
Access to WhatsApp official Web messenger in a standalone sandboxed window
Was ist Web Messenger?
Web Messenger ist eine Chrome-Erweiterung, die von tlintspr entwickelt wurde, und ihr Hauptmerkmal ist "Access to WhatsApp official Web messenger in a standalone sandboxed window".
Erweiterungsscreenshots
Web Messenger-Erweiterungs-CRX-Datei herunterladen
Laden Sie Web Messenger-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
The "Web Messenger" extension brings the official WhatsApp web service as a standalone sandboxed window. You will get unread count badge notifications on your browser windows. Features: 1. Access the official messenger in a sandboxed window 2. Control whether notifications are silent or not 3. Get badge counter on the action button Please note that this application only loads the official WhatsApp web interface inside a standalone window. There is no intention of misleading users that this is the official application. This app only tries to make access to the official web service simpler. To use WhatsApp Web, you need to read the terms and conditions from https://www.whatsapp.com/legal/ To connect WhatsApp Messenger to your cellphone, please read: https://www.whatsapp.com/faq/en/web/28080003
Grundlegende Informationen zur Erweiterung
Name | Web Messenger |
ID | infelompnbbancffeibkenmdbbmpoged |
Offizielle URL | https://chromewebstore.google.com/detail/web-messenger/infelompnbbancffeibkenmdbbmpoged |
Beschreibung | Access to WhatsApp official Web messenger in a standalone sandboxed window |
Dateigröße | 44.95 KB |
Installationsanzahl | 35,396 |
Aktuelle Version | 0.3.0 |
Letztes Update | 2021-07-14 |
Veröffentlichungsdatum | 2018-12-10 |
Bewertung | 3.90/5 Insgesamt 554 Bewertungen |
Entwickler | tlintspr |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/cluclead/panel-view |
Hilfeseite URL | https://github.com/cluclead/panel-view |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.0", "name": "Web Messenger", "description": "Access to WhatsApp official Web messenger in a standalone sandboxed window", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" }, "homepage_url": "https:\/\/add0n.com\/whatsapp-messenger.html", "permissions": [ "storage" ], "action": [], "content_scripts": [ { "matches": [ "*:\/\/web.whatsapp.com\/" ], "js": [ "data\/inject.js" ], "css": [ "data\/inject.css" ], "all_frames": true, "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "data\/window\/home.svg", "data\/window\/reload.svg", "data\/window\/settings.svg", "data\/dom.js" ], "matches": [ "*:\/\/web.whatsapp.com\/*" ] } ], "options_ui": { "page": "data\/options\/index.html" } } |