Focus for Whatsapp Web

Reclaim your productivity.

Vad är Focus for Whatsapp Web?

Focus for Whatsapp Web är en Chrome-tillägg utvecklad av Jeroen Overschie, och dess huvudfunktion är "Reclaim your productivity.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Focus for Whatsapp Web-förlängningens CRX-fil

Ladda ner Focus for Whatsapp Web-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Focus for Whatsapp Web Focus for Whatsapp Web
ID bjnibicbhblienknpljadlclofojhpnd
Officiell webbadress https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd
Beskrivning Reclaim your productivity.
Filstorlek 13.84 KB
Antal Installationer 38
Aktuell Version 1.0
Senast Uppdaterad 2021-03-02
Publiceringsdatum 2021-03-01
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Jeroen Overschie
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/dunnkers/focus-whatsapp-web
Stödda Språk 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
    }
}