Time Saver

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

Time Saver là gì?

Time Saver là một tiện ích mở rộng Chrome được phát triển bởi Curtis Huebner, và tính năng chính của nó là "Block a specific set of sites during specific periods of the week using a JSON formatted string.".

Tải xuống tệp CRX của tiện ích mở rộng Time Saver

Tải xuống các tệp mở rộng Time Saver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
URL Chính Thức https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
Mô tả Block a specific set of sites during specific periods of the week using a JSON formatted string.
Kích Thước Tệp 9.06 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-05-25
Ngày Phát Hành 2017-05-25
Nhà Phát Triển Curtis Huebner
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}