Time Blocker

A timer for working with the time blocking technique.

Time Blocker란 무엇입니까?

Time Blocker은(는) timeblockerapp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A timer for working with the time blocking technique."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Time Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This app is a timer which utilizes the time blocking technique, in which you work/study intensively for a given amount of time, then take a short break. After a few of those, you take a big break. 

Main features:

* Three different timers for the different sessions (work/study (time block), small break and big break, all completely customizable.

* The ability to play a "ding" sound/open a small popup window when a session ends.

* Keyboard shortcuts to start any of the three given presets, or stop the currently running one.

* A badge on the icon of the add-on indicating the minutes left for the session, so you don't have to open the add-on to know the time left.

* The ability to continue from the Time Block session to the Small Break session.

Source: github.com/igorkheifetz/timeblocker                    

확장 프로그램 기본 정보

이름 Time Blocker Time Blocker
ID bjlhicepbkpkkejkaekdbdlanioklnlh
공식 URL https://chromewebstore.google.com/detail/time-blocker/bjlhicepbkpkkejkaekdbdlanioklnlh
설명 A timer for working with the time blocking technique.
파일 크기 23.59 KB
설치 횟수 962
현재 버전 0.9.0.2
최근 업데이트 2016-12-31
출시 날짜 2016-12-31
평점 4.67/5 총 6 개의 평점
개발자 timeblockerapp
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/igorkheifetz/timeblocker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Blocker",
    "version": "0.9.0.2",
    "description": "A timer for working with the time blocking technique.",
    "icons": {
        "24": "icons\/TimeBlocker24.png",
        "32": "icons\/TimeBlocker32.png",
        "48": "icons\/TimeBlocker48.png",
        "96": "icons\/TimeBlocker96.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "background_scripts\/timer_background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/TimeBlocker32.png",
        "default_title": "Time Blocker",
        "default_popup": "popup\/timer_control.html"
    },
    "commands": {
        "time_block": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Starts a time block session"
        },
        "small_break": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Starts a small break session"
        },
        "big_break": {
            "suggested_key": {
                "default": "Alt+B"
            },
            "description": "Starts a big break session"
        },
        "stop": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Stops the current session"
        }
    }
}