Focus for Whatsapp Web
Reclaim your productivity.
Focus for Whatsapp Webとは何ですか?
Focus for Whatsapp WebはJeroen Overschieによって開発されたChromeの拡張機能で、その主な機能は「Reclaim your productivity.」です。
拡張機能のスクリーンショット
Focus for Whatsapp Web拡張機能のCRXファイルをダウンロード
Focus for Whatsapp Web拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Hides the WhatsApp chat list - so you don't get lost in all your messages. Stop your flow from getting interrupted by your WhatsApp messages. This extension allows you to message one person, without seeing the entire chat list. Use the search bar and hit enter to open up a single chat.
拡張機能の基本情報
名前 | Focus for Whatsapp Web |
ID | bjnibicbhblienknpljadlclofojhpnd |
公式URL | https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd |
説明 | Reclaim your productivity. |
ファイルサイズ | 13.84 KB |
インストール数 | 38 |
現在のバージョン | 1.0 |
最終更新日 | 2021-03-02 |
公開日 | 2021-03-01 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Jeroen Overschie |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/dunnkers/focus-whatsapp-web |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus for Whatsapp Web", "version": "1.0", "description": "Reclaim your productivity.", "manifest_version": 2, "permissions": [ "storage", "activeTab", "https:\/\/web.whatsapp.com\/*", "tabs" ], "options_ui": { "page": "options.html", "open_in_tab": false, "chrome_style": true }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "https:\/\/web.whatsapp.com\/*" ] } ], "browser_action": { "default_popup": "options.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |