Focus Meter

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

What is Focus Meter?

Focus Meter is a Chrome extension developed by felixpitau, and its main feature is "Tracks focus and break times and blocks distracting sites when you're meant to focus.".

Extension Screenshots

screenshot
screenshot

Download Focus Meter Extension CRX File

Download Focus Meter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Focus Meter Focus Meter
ID hepedehopmkmfdnlgogmmfkkmjflkkia
Official URL https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia
Description Tracks focus and break times and blocks distracting sites when you're meant to focus.
File Size 81.51 KB
Installation Count 73
Current Version 1.1
Last Updated 2018-01-12
Publish Date 2018-01-11
Developer felixpitau
Payment Type free
Supported Languages 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"
    }
}