Blacklist

Blacklist is a very simple website blocker designed for personal use.

Blacklist là gì?

Blacklist là một tiện ích mở rộng Chrome được phát triển bởi http://rahulgi.com, và tính năng chính của nó là "Blacklist is a very simple website blocker designed for personal use.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Blacklist 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 is a very simple extension for Google Chrome. When you find yourself on a website that is taking too much of your time, simply hit the Blacklist button in the upper right corner of Chrome and you will be blocked from visiting that site while Blacklist remains active. To resume visiting any site blocked by Blacklist, you must visit the site, click the Blacklist extension button in the upper right corner of the browser, and then click the "unlist" button. You will be forced to wait for 15 seconds before the site is unlisted and you are redirected to the root URL.                    

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

Tên Blacklist Blacklist
ID jbpccandodannohfaoncogijbkfcmpgo
URL Chính Thức https://chrome.google.com/webstore/detail/blacklist/jbpccandodannohfaoncogijbkfcmpgo
Mô tả Blacklist is a very simple website blocker designed for personal use.
Kích Thước Tệp 575 KB
Số Lần Cài Đặt 34,267
Phiên Bản Hiện Tại 0.93
Cập Nhật Lần Cuối 2019-12-09
Ngày Phát Hành 2019-12-09
Đánh Giá 3.71/5 Tổng số 104 Đánh Giá
Nhà Phát Triển http://rahulgi.com
Loại Thanh Toán free
Trang Web Mở Rộng https://rahulgi.com/blacklist
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blacklist",
    "version": "0.93",
    "manifest_version": 2,
    "description": "Blacklist is a very simple website blocker designed for personal use.",
    "icons": {
        "16": "icon.16.png",
        "48": "icon.48.png",
        "128": "icon.128.png"
    },
    "homepage_url": "http:\/\/rahulgi.github.com\/Blacklist",
    "browser_action": {
        "default_icon": "icon.48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "blockedSite.html"
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "webNavigation"
    ],
    "incognito": "split"
}