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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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