Breathe: Website blocker

Calm and simple reminders to breathe, whenever you visit a distracting site.

Что такое Breathe: Website blocker?

Breathe: Website blocker - это расширение Chrome, разработанное https://alejorivera.com, и его основная функция - "Calm and simple reminders to breathe, whenever you visit a distracting site.".

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

screenshot

Скачать файл CRX расширения Breathe: Website blocker

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

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

                        Calm and simple reminders to breathe, whenever you visit a distracting site.                    

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

Название Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
Официальный URL https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Описание Calm and simple reminders to breathe, whenever you visit a distracting site.
Размер файла 71.42 KB
Количество установок 80
Текущая Версия 0.2
Последнее Обновление 2017-04-30
Дата публикации 2017-04-30
Рейтинг 3.00/5 Всего 4 оценок
Разработчик https://alejorivera.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Breathe: Website blocker",
    "description": "Calm and simple reminders to breathe, whenever you visit a distracting site.",
    "version": "0.2",
    "icons": {
        "128": "breathe.png"
    },
    "browser_action": {
        "default_icon": "breathe.png",
        "default_title": "Breathe",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "breathe.html"
    ]
}