Focus for Whatsapp Web

Reclaim your productivity.

Wat is Focus for Whatsapp Web?

Focus for Whatsapp Web is een Chrome-extensie ontwikkeld door Jeroen Overschie, en de belangrijkste functie is "Reclaim your productivity.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Focus for Whatsapp Web

Download Focus for Whatsapp Web-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Focus for Whatsapp Web Focus for Whatsapp Web
ID bjnibicbhblienknpljadlclofojhpnd
Officiële URL https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd
Beschrijving Reclaim your productivity.
Bestandsgrootte 13.84 KB
Aantal Installaties 38
Huidige Versie 1.0
Laatst Bijgewerkt 2021-03-02
Publicatiedatum 2021-03-01
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Jeroen Overschie
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/dunnkers/focus-whatsapp-web
Ondersteunde Talen 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
    }
}