Focus for Whatsapp Web

Reclaim your productivity.

Was ist Focus for Whatsapp Web?

Focus for Whatsapp Web ist eine Chrome-Erweiterung, die von Jeroen Overschie entwickelt wurde, und ihr Hauptmerkmal ist "Reclaim your productivity.".

Erweiterungsscreenshots

screenshot
screenshot

Focus for Whatsapp Web-Erweiterungs-CRX-Datei herunterladen

Laden Sie Focus for Whatsapp Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Focus for Whatsapp Web Focus for Whatsapp Web
ID bjnibicbhblienknpljadlclofojhpnd
Offizielle URL https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd
Beschreibung Reclaim your productivity.
Dateigröße 13.84 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2021-03-02
Veröffentlichungsdatum 2021-03-01
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Jeroen Overschie
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dunnkers/focus-whatsapp-web
Unterstützte Sprachen 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
    }
}