Dopanope

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

什么是Dopanope?

Dopanope是由Boss as a Service开发的Chrome扩展程序,该扩展的主要功能是“Block distracting sites by putting your impatience to work for you.”。

扩展截图

screenshot

下载Dopanope扩展crx文件

下载Dopanope扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Dopanope Dopanope
ID bbpdpjjmikfofiifgfcdbpbmmeiglemh
官方URL https://chromewebstore.google.com/detail/dopanope/bbpdpjjmikfofiifgfcdbpbmmeiglemh
简介 Block distracting sites by putting your impatience to work for you.
文件大小 120 KB
安装次数 174
当前版本 0.0.1
更新时间 2023-03-25
上架时间 2023-02-20
评分 4.80/5 共5次评分
开发者 Boss as a Service
电子邮箱 [email protected]
付费类型 free
扩展官网 https://bossasaservice.com/
隐私政策页面URL https://bossasaservice.com/dopanope-privacy-policy
支持的语言 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"
    }
}