Focus Meter

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

Focus Meterとは何ですか?

Focus Meterはfelixpitauによって開発されたChromeの拡張機能で、その主な機能は「Tracks focus and break times and blocks distracting sites when you're meant to focus.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Focus Meter拡張機能のCRXファイルをダウンロード

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"
    }
}