Dopanope

Block distracting sites by putting your impatience to work for you.

Was ist Dopanope?

Dopanope ist eine Chrome-Erweiterung, die von Boss as a Service entwickelt wurde, und ihr Hauptmerkmal ist "Block distracting sites by putting your impatience to work for you.".

Erweiterungsscreenshots

screenshot

Dopanope-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dopanope-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Dopanope Dopanope
ID bbpdpjjmikfofiifgfcdbpbmmeiglemh
Offizielle URL https://chromewebstore.google.com/detail/dopanope/bbpdpjjmikfofiifgfcdbpbmmeiglemh
Beschreibung Block distracting sites by putting your impatience to work for you.
Dateigröße 120 KB
Installationsanzahl 174
Aktuelle Version 0.0.1
Letztes Update 2023-03-25
Veröffentlichungsdatum 2023-02-20
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler Boss as a Service
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://bossasaservice.com/
URL der Datenschutzrichtlinien-Seite https://bossasaservice.com/dopanope-privacy-policy
Unterstützte Sprachen 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"
    }
}