Focus for Whatsapp Web
Reclaim your productivity.
Cos'è Focus for Whatsapp Web?
Focus for Whatsapp Web è un'estensione di Chrome sviluppata da Jeroen Overschie, e la sua funzione principale è "Reclaim your productivity.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Focus for Whatsapp Web
Scarica i file di estensione Focus for Whatsapp Web in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Focus for Whatsapp Web |
ID | bjnibicbhblienknpljadlclofojhpnd |
URL Ufficiale | https://chromewebstore.google.com/detail/focus-for-whatsapp-web/bjnibicbhblienknpljadlclofojhpnd |
Descrizione | Reclaim your productivity. |
Dimensione del File | 13.84 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-03-02 |
Data di Pubblicazione | 2021-03-01 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Jeroen Overschie |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dunnkers/focus-whatsapp-web |
Lingue Supportate | 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 } } |