Time Saver

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

¿Qué es Time Saver?

Time Saver es una extensión de Chrome desarrollada por Curtis Huebner, y su función principal es "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Descargar Archivo CRX de la Extensión Time Saver

Descarga archivos de extensión Time Saver en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
URL Oficial https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Descripción Block a specific set of sites during specific periods of the week using a JSON formatted string.
Tamaño del Archivo 9.06 KB
Cantidad de Instalaciones 37
Versión Actual 0.0.2
Última Actualización 2017-05-25
Fecha de Publicación 2017-05-25
Desarrollador Curtis Huebner
Tipo de Pago free
Idiomas Soportados 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"
    ]
}