Time Saver

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

Co to jest Time Saver?

Time Saver to rozszerzenie Chrome opracowane przez Curtis Huebner, a jego główną funkcją jest „Block a specific set of sites during specific periods of the week using a JSON formatted string.”.

Pobierz plik CRX rozszerzenia Time Saver

Pobierz pliki rozszerzeń Time Saver w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
Oficjalny URL https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Opis Block a specific set of sites during specific periods of the week using a JSON formatted string.
Rozmiar pliku 9.06 KB
Liczba instalacji 37
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2017-05-25
Data Publikacji 2017-05-25
Deweloper Curtis Huebner
Typ Płatności free
Obsługiwane Języki 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"
    ]
}