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
官方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
电子邮箱 [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
    }
}