Focus Meter

Tracks focus and break times and blocks distracting sites when you're meant to focus.

Что такое Focus Meter?

Focus Meter - это расширение Chrome, разработанное felixpitau, и его основная функция - "Tracks focus and break times and blocks distracting sites when you're meant to focus.".

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

screenshot
screenshot

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

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

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

                        This app helps to assist people who have difficulty focusing because they're getting distracted online. Set a blacklist of distracting sites, set starting and ending work times for the blocking to take effect and specify how much focus time earns you a break now and then.                    

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

Название Focus Meter Focus Meter
ID hepedehopmkmfdnlgogmmfkkmjflkkia
Официальный URL https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia
Описание Tracks focus and break times and blocks distracting sites when you're meant to focus.
Размер файла 81.51 KB
Количество установок 73
Текущая Версия 1.1
Последнее Обновление 2018-01-12
Дата публикации 2018-01-11
Разработчик felixpitau
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focus Meter",
    "short_name": "Focus Meter",
    "description": "Tracks focus and break times and blocks distracting sites when you're meant to focus.",
    "version": "1.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "block.css"
            ],
            "js": [
                "block.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "alarms",
        "notifications"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}