Web Messenger
Access to WhatsApp official Web messenger in a standalone sandboxed window
Web Messengerとは何ですか?
Web Messengerはtlintsprによって開発されたChromeの拡張機能で、その主な機能は「Access to WhatsApp official Web messenger in a standalone sandboxed window」です。
拡張機能のスクリーンショット
Web Messenger拡張機能のCRXファイルをダウンロード
Web Messenger拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Web Messenger |
ID | infelompnbbancffeibkenmdbbmpoged |
公式URL | https://chromewebstore.google.com/detail/web-messenger/infelompnbbancffeibkenmdbbmpoged |
説明 | Access to WhatsApp official Web messenger in a standalone sandboxed window |
ファイルサイズ | 44.95 KB |
インストール数 | 35,396 |
現在のバージョン | 0.3.0 |
最終更新日 | 2021-07-14 |
公開日 | 2018-12-10 |
評価 | 3.90/5 合計 554 レビュー |
開発者 | tlintspr |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/cluclead/panel-view |
ヘルプページのURL | https://github.com/cluclead/panel-view |
対応言語 | 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" } } |