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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}