Good Morning

Be more productive each morning by avoiding distracting websites

Что такое Good Morning?

Good Morning - это расширение Chrome, разработанное Travis Wimer, и его основная функция - "Be more productive each morning by avoiding distracting websites".

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

screenshot

Скачать файл CRX расширения Good Morning

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

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

                        You've probably heard that most successful people know how to get work done in the morning. Good Morning is an extension to help you be more productive during those early hours by:

- Blocking common distracting sites
- Allowing you to add/remove sites to block
- Giving you the option to bypass the blocker on a site for 5 minutes
- Automatically letting you browse freely after noon                    

Основная информация о расширении

Название Good Morning Good Morning
ID icjnjamlfgbdinjffhckkbgdpkddnlnk
Официальный URL https://chromewebstore.google.com/detail/good-morning/icjnjamlfgbdinjffhckkbgdpkddnlnk
Описание Be more productive each morning by avoiding distracting websites
Размер файла 214 KB
Количество установок 50
Текущая Версия 0.0.3
Последнее Обновление 2013-09-07
Дата публикации 2013-09-07
Рейтинг 4.00/5 Всего 4 оценок
Разработчик Travis Wimer
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Good Morning",
    "description": "Be more productive each morning by avoiding distracting websites",
    "version": "0.0.3",
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "background": {
        "scripts": [
            "scripts\/request_handler.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/jquery-2.0.1.min.js",
                "scripts\/redirect.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "scripts\/jquery-2.0.1.min.map"
    ]
}