Work Interval Timer

Helps to block distracting websites during alternating periods of work and break

Work Interval Timer là gì?

Work Interval Timer là một tiện ích mở rộng Chrome được phát triển bởi jasonstranne, và tính năng chính của nó là "Helps to block distracting websites during alternating periods of work and break".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Work Interval Timer 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 extension helps to promote productivity by controlling periods of work and rest. During periods of work, user-specified distracting websites are blocked while all other sites can be accessed in full. On the other hand, during periods of rest all websites are accessible. This method is very similar to the Pomodoro method and is perfect for studying.

Simply click on the icon to access these features: 
-Stop and start buttons
-Sliders to customize the length of work and rest periods
-Easy to edit list of sites to block                    

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

Tên Work Interval Timer Work Interval Timer
ID ohjdmhmeknfckcobidllopadedgiiilg
URL Chính Thức https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg
Mô tả Helps to block distracting websites during alternating periods of work and break
Kích Thước Tệp 55.04 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2019-01-09
Ngày Phát Hành 2019-01-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jasonstranne
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Work Interval Timer",
    "description": "Helps to block distracting websites during alternating periods of work and break",
    "manifest_version": 2,
    "version": "2.1.0",
    "web_accessible_resources": [
        "images\/*.jpg"
    ],
    "author": "[email protected]",
    "permissions": [
        "management",
        "background",
        "webRequest",
        "tabs",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "clockpossiblelogo.png",
        "48": "clockpossiblelogo.png",
        "128": "clockpossiblelogo.png"
    },
    "browser_action": {
        "default_title": "Work Interval Timer",
        "default_icon": "clockpossiblelogo.png",
        "default_popup": "options.html"
    },
    "background": {
        "matches": [
            "*:\/\/*\/*"
        ],
        "scripts": [
            "timer.js",
            "buttonscript.js",
            "options.html"
        ],
        "persistent": true
    }
}