Dopanope
Block distracting sites by putting your impatience to work for you.
Qu'est-ce que Dopanope ?
Dopanope est une extension Chrome développée par Boss as a Service, et sa fonction principale est "Block distracting sites by putting your impatience to work for you.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dopanope
Téléchargez les fichiers d'extension Dopanope au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Dopanope |
ID | bbpdpjjmikfofiifgfcdbpbmmeiglemh |
URL Officiel | https://chromewebstore.google.com/detail/dopanope/bbpdpjjmikfofiifgfcdbpbmmeiglemh |
Description | Block distracting sites by putting your impatience to work for you. |
Taille du Fichier | 120 KB |
Nombre d'Installations | 174 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2023-03-25 |
Date de Publication | 2023-02-20 |
Évaluation | 4.80/5 Total 5 Évaluations |
Développeur | Boss as a Service |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://bossasaservice.com/ |
URL de la Page de Politique de Confidentialité | https://bossasaservice.com/dopanope-privacy-policy |
Langues Prises en Charge | 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" } } |