Time Blocked

Block yourself from any website at certain times of the day.

什麼是Time Blocked?

Time Blocked是由https://www.tyrotoxism.net開發的Chrome擴展程式,該擴展的主要功能是“Block yourself from any website at certain times of the day.”。

擴展截圖

screenshot

下載Time Blocked擴展crx文件

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

擴展使用說明

                        This plugin allows you to be more productive, and it doesn't waste your time while doing so.

You can with ease dictate the time you want to be blocked from a website, and even allow yourself in only on weekends so you don't unblock yourself, and "forget" to block yourself again!

Feature suggestions are encouraged, but I will only implement features which makes this plugin simpler to use.

This plugin was made on a request: http://www.reddit.com/r/SomebodyMakeThis/comments/1igrkt/a_chrome_extension_that_prevents_me_from_visiting/                    

擴展基本資訊

名稱 Time Blocked Time Blocked
ID kjnepmakcgjbllfnpdnppjpnfpoelabn
官方網址 https://chromewebstore.google.com/detail/time-blocked/kjnepmakcgjbllfnpdnppjpnfpoelabn
簡介 Block yourself from any website at certain times of the day.
檔案大小 68.39 KB
安裝次數 60
目前版本 1.2.3
更新時間 2013-07-27
上架時間 2013-07-27
評分 4.00/5 共 1 次評分
開發者 https://www.tyrotoxism.net
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Blocked",
    "description": "Block yourself from any website at certain times of the day.",
    "version": "1.2.3",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "javascript\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "javascript\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Time Blocked",
        "default_popup": "popup.html"
    }
}