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
公式URL 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
    }
}