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