Time Saver

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

ما هو Time Saver؟

Time Saver هو إضافة Chrome تم تطويرها بواسطة Curtis Huebner، والميزة الرئيسية لها هي "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

تحميل ملف CRX للإضافة Time Saver

قم بتنزيل ملفات الامتداد Time Saver بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
الوصف Block a specific set of sites during specific periods of the week using a JSON formatted string.
حجم الملف 9.06 KB
عدد التثبيتات 37
النسخة الحالية 0.0.2
آخر تحديث 2017-05-25
تاريخ النشر 2017-05-25
المطور Curtis Huebner
نوع الدفع free
اللغات المدعومة 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"
    ]
}