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
官方網址 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"
    }
}