Focus Meter

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

Co je Focus Meter?

Focus Meter je rozšíření Chrome vyvinuté felixpitau, a jeho hlavní funkcí je „Tracks focus and break times and blocks distracting sites when you're meant to focus.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Focus Meter

Stáhněte si soubory rozšíření Focus Meter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Focus Meter Focus Meter
ID hepedehopmkmfdnlgogmmfkkmjflkkia
Oficiální URL https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia
Popis Tracks focus and break times and blocks distracting sites when you're meant to focus.
Velikost souboru 81.51 KB
Počet instalací 73
Aktuální Verze 1.1
Poslední Aktualizace 2018-01-12
Datum Vydání 2018-01-11
Vývojář felixpitau
Typ Platby free
Podporované Jazyky 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"
    }
}