The 20 Second Rule

The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to…

The 20 Second Rule란 무엇입니까?

The 20 Second Rule은(는) Brad Dennis, Ph.D.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to…"입니다.

확장 프로그램 스크린샷

screenshot

The 20 Second Rule 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to get to.  It is based upon the 20 Second Rule in The Happiness Advantage by Shawn Anchor.                    

확장 프로그램 기본 정보

이름 The 20 Second Rule The 20 Second Rule
ID mlonnhlhamjoopabmomhbdlddiomojpp
공식 URL https://chromewebstore.google.com/detail/the-20-second-rule/mlonnhlhamjoopabmomhbdlddiomojpp
설명 The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to…
파일 크기 228 KB
설치 횟수 1,113
현재 버전 1.0
최근 업데이트 2014-10-26
출시 날짜 2014-10-26
평점 5.00/5 총 8 개의 평점
개발자 Brad Dennis, Ph.D.
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-off-19.png",
            "38": "icons\/icon-off-38.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "The 20 Second Rule"
    },
    "icons": {
        "128": "icons\/icon-off-128.png"
    },
    "name": "The 20 Second Rule",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus"
    ],
    "version": "1.0",
    "manifest_version": 2,
    "web_accessible_resources": [
        "inject\/inject.css"
    ],
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}