Time Blocker

A timer for working with the time blocking technique.

Time Blocker là gì?

Time Blocker là một tiện ích mở rộng Chrome được phát triển bởi timeblockerapp, và tính năng chính của nó là "A timer for working with the time blocking technique.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Time Blocker

Tải xuống các tệp mở rộng Time Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Time Blocker Time Blocker
ID bjlhicepbkpkkejkaekdbdlanioklnlh
URL Chính Thức https://chromewebstore.google.com/detail/time-blocker/bjlhicepbkpkkejkaekdbdlanioklnlh
Mô tả A timer for working with the time blocking technique.
Kích Thước Tệp 23.59 KB
Số Lần Cài Đặt 962
Phiên Bản Hiện Tại 0.9.0.2
Cập Nhật Lần Cuối 2016-12-31
Ngày Phát Hành 2016-12-31
Đánh Giá 4.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển timeblockerapp
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/igorkheifetz/timeblocker
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}