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 - это расширение Chrome, разработанное Brad Dennis, Ph.D., и его основная функция - "The 20 Second Rule Chrome Extension is a simple productivity tool that enables you to make distracting sites 20 seconds harder to…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения The 20 Second Rule

Скачайте файлы расширений The 20 Second Rule в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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