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…

Co to jest The 20 Second Rule?

The 20 Second Rule to rozszerzenie Chrome opracowane przez Brad Dennis, Ph.D., a jego główną funkcją jest „The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia The 20 Second Rule

Pobierz pliki rozszerzeń The 20 Second Rule w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa The 20 Second Rule The 20 Second Rule
ID mlonnhlhamjoopabmomhbdlddiomojpp
Oficjalny URL https://chromewebstore.google.com/detail/the-20-second-rule/mlonnhlhamjoopabmomhbdlddiomojpp
Opis The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to…
Rozmiar pliku 228 KB
Liczba instalacji 1,113
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-10-26
Data Publikacji 2014-10-26
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper Brad Dennis, Ph.D.
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}