Time Saver

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

What is Time Saver?

Time Saver is a Chrome extension developed by Curtis Huebner, and its main feature is "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Download Time Saver Extension CRX File

Download Time Saver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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"
            ]
        }
    ]
}                    

Extension Basic Information

Name Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
Official URL https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Description Block a specific set of sites during specific periods of the week using a JSON formatted string.
File Size 9.06 KB
Installation Count 37
Current Version 0.0.2
Last Updated 2017-05-25
Publish Date 2017-05-25
Developer Curtis Huebner
Payment Type free
Supported Languages 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"
    ]
}