Time Saver

Block a specific set of sites during specific periods of the week using a JSON formatted string.

什麼是Time Saver?

Time Saver是由Curtis Huebner開發的Chrome擴展程式,該擴展的主要功能是“Block a specific set of sites during specific periods of the week using a JSON formatted string.”。

下載Time Saver擴展crx文件

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

擴展使用說明

                        An extension that blocks certain URLs for certain parts of the week. For instance to block "www.evil.com" and "www.distraction.com" from 1:30AM Monday to 4:37PM Friday and any site that has "fun" in the url on Sunday, the filter would be:

{
    "times": [
        {
            "endDay": 5,
            "endHour": 16,
            "endMinute": 37,
            "startDay": 1,
            "startHour": 1,
            "startMinute": 30,
            "urls": [
                "www.evil.com",
                "www.distraction.com"
            ]
        },
        {
            "endDay": 1,
            "endHour": 0,
            "endMinute": 0,
            "startDay": 0,
            "startHour": 18,
            "startMinute": 0,
            "urls": [
                "fun"
            ]
        }
    ]
}                    

擴展基本資訊

名稱 Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
官方網址 https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
簡介 Block a specific set of sites during specific periods of the week using a JSON formatted string.
檔案大小 9.06 KB
安裝次數 37
目前版本 0.0.2
更新時間 2017-05-25
上架時間 2017-05-25
開發者 Curtis Huebner
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Saver",
    "description": "Block a specific set of sites during specific periods of the week using a JSON formatted string.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "redirect.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ]
}