Time Saver

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

Cos'è Time Saver?

Time Saver è un'estensione di Chrome sviluppata da Curtis Huebner, e la sua funzione principale è "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Scarica il file CRX dell'estensione Time Saver

Scarica i file di estensione Time Saver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
URL Ufficiale https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Descrizione Block a specific set of sites during specific periods of the week using a JSON formatted string.
Dimensione del File 9.06 KB
Conteggio Installazioni 37
Versione Corrente 0.0.2
Ultimo Aggiornamento 2017-05-25
Data di Pubblicazione 2017-05-25
Sviluppatore Curtis Huebner
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}