Time Saver

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

Wat is Time Saver?

Time Saver is een Chrome-extensie ontwikkeld door Curtis Huebner, en de belangrijkste functie is "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Download het CRX-bestand van de extensie Time Saver

Download Time Saver-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
Officiële URL https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Beschrijving Block a specific set of sites during specific periods of the week using a JSON formatted string.
Bestandsgrootte 9.06 KB
Aantal Installaties 37
Huidige Versie 0.0.2
Laatst Bijgewerkt 2017-05-25
Publicatiedatum 2017-05-25
Ontwikkelaar Curtis Huebner
Betalingswijze free
Ondersteunde Talen 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"
    ]
}