Focus for Whatsapp Web

Reclaim your productivity.

What is Focus for Whatsapp Web?

Focus for Whatsapp Web is a Chrome extension developed by Jeroen Overschie, and its main feature is "Reclaim your productivity.".

Extension Screenshots

screenshot
screenshot

Download Focus for Whatsapp Web Extension CRX File

Download Focus for Whatsapp Web extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Focus for Whatsapp Web Focus for Whatsapp Web
ID bjnibicbhblienknpljadlclofojhpnd
Official URL https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd
Description Reclaim your productivity.
File Size 13.84 KB
Installation Count 38
Current Version 1.0
Last Updated 2021-03-02
Publish Date 2021-03-01
Rating 5.00/5 Total 3 Ratings
Developer Jeroen Overschie
Email [email protected]
Payment Type free
Extension Website https://github.com/dunnkers/focus-whatsapp-web
Supported Languages 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
    }
}