Time Saver

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

Qu'est-ce que Time Saver ?

Time Saver est une extension Chrome développée par Curtis Huebner, et sa fonction principale est "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Télécharger le fichier CRX de l'extension Time Saver

Téléchargez les fichiers d'extension Time Saver au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
URL Officiel 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.
Taille du Fichier 9.06 KB
Nombre d'Installations 37
Version Actuelle 0.0.2
Dernière Mise à Jour 2017-05-25
Date de Publication 2017-05-25
Développeur Curtis Huebner
Type de Paiement free
Langues Prises en Charge 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"
    ]
}