Time Saver

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

Apa itu Time Saver?

Time Saver adalah ekstensi Chrome yang dikembangkan oleh Curtis Huebner, dan fitur utamanya adalah "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Unduh Berkas CRX Ekstensi Time Saver

Unduh file ekstensi Time Saver dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
URL Resmi https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Deskripsi Block a specific set of sites during specific periods of the week using a JSON formatted string.
Ukuran File 9.06 KB
Jumlah Instalasi 37
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2017-05-25
Tanggal Publikasi 2017-05-25
Pengembang Curtis Huebner
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}