Dopanope
Block distracting sites by putting your impatience to work for you.
Cos'è Dopanope?
Dopanope è un'estensione di Chrome sviluppata da Boss as a Service, e la sua funzione principale è "Block distracting sites by putting your impatience to work for you.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dopanope
Scarica i file di estensione Dopanope 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
Dopanope makes you wait before you can access your favorite time-wasting websites, decoupling the action from the neurological reward. Put your impatience to work for you and stop mindlessly browsing the internet.
Informazioni di Base sull'Estensione
Nome | Dopanope |
ID | bbpdpjjmikfofiifgfcdbpbmmeiglemh |
URL Ufficiale | https://chromewebstore.google.com/detail/dopanope/bbpdpjjmikfofiifgfcdbpbmmeiglemh |
Descrizione | Block distracting sites by putting your impatience to work for you. |
Dimensione del File | 120 KB |
Conteggio Installazioni | 174 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2023-03-25 |
Data di Pubblicazione | 2023-02-20 |
Valutazione | 4.80/5 Totale 5 Valutazioni |
Sviluppatore | Boss as a Service |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://bossasaservice.com/ |
URL della Pagina della Politica sulla Privacy | https://bossasaservice.com/dopanope-privacy-policy |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dopanope", "description": "Block distracting sites by putting your impatience to work for you.", "version": "0.0.1", "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "tabs", "storage", "notifications", "alarms" ], "web_accessible_resources": [ { "resources": [ "overlay.css", "img\/*.png", "fonts\/*.otf", "popup.css", "popup.js", "options.html", "icon-128.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "moment.js", "script.js" ], "run_at": "document_start", "css": [ "overlay.css" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": "img\/icon-128-blue.png" }, "icons": { "16": "img\/icon-16-blue.png", "19": "img\/icon-19-blue.png", "38": "img\/icon-38-blue.png", "48": "img\/icon-48-blue.png", "128": "img\/icon-128-blue.png" } } |