Time Blocked

Block yourself from any website at certain times of the day.

Time Blocked là gì?

Time Blocked là một tiện ích mở rộng Chrome được phát triển bởi https://www.tyrotoxism.net, và tính năng chính của nó là "Block yourself from any website at certain times of the day.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

Tải xuống các tệp mở rộng Time Blocked 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

                        This plugin allows you to be more productive, and it doesn't waste your time while doing so.

You can with ease dictate the time you want to be blocked from a website, and even allow yourself in only on weekends so you don't unblock yourself, and "forget" to block yourself again!

Feature suggestions are encouraged, but I will only implement features which makes this plugin simpler to use.

This plugin was made on a request: http://www.reddit.com/r/SomebodyMakeThis/comments/1igrkt/a_chrome_extension_that_prevents_me_from_visiting/                    

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

Tên Time Blocked Time Blocked
ID kjnepmakcgjbllfnpdnppjpnfpoelabn
URL Chính Thức https://chromewebstore.google.com/detail/time-blocked/kjnepmakcgjbllfnpdnppjpnfpoelabn
Mô tả Block yourself from any website at certain times of the day.
Kích Thước Tệp 68.39 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.2.3
Cập Nhật Lần Cuối 2013-07-27
Ngày Phát Hành 2013-07-27
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.tyrotoxism.net
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 Blocked",
    "description": "Block yourself from any website at certain times of the day.",
    "version": "1.2.3",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "javascript\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "javascript\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Time Blocked",
        "default_popup": "popup.html"
    }
}