Focus for Whatsapp Web

Reclaim your productivity.

什麼是Focus for Whatsapp Web?

Focus for Whatsapp Web是由Jeroen Overschie開發的Chrome擴展程式,該擴展的主要功能是“Reclaim your productivity.”。

擴展截圖

screenshot
screenshot

下載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 Focus for Whatsapp Web
ID bjnibicbhblienknpljadlclofojhpnd
官方網址 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
電子郵箱 [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
    }
}