Work Interval Timer

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

什麼是Work Interval Timer?

Work Interval Timer是由jasonstranne開發的Chrome擴展程式,該擴展的主要功能是“Helps to block distracting websites during alternating periods of work and break”。

擴展截圖

screenshot
screenshot

下載Work Interval Timer擴展crx文件

下載Work Interval Timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Work Interval Timer Work Interval Timer
ID ohjdmhmeknfckcobidllopadedgiiilg
官方網址 https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg
簡介 Helps to block distracting websites during alternating periods of work and break
檔案大小 55.04 KB
安裝次數 79
目前版本 2.1.0
更新時間 2019-01-09
上架時間 2019-01-09
評分 5.00/5 共 1 次評分
開發者 jasonstranne
付費類型 free
支援的語言 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
    }
}