Blacklist

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

Blacklistとは何ですか?

Blacklistはhttp://rahulgi.comによって開発されたChromeの拡張機能で、その主な機能は「Blacklist is a very simple website blocker designed for personal use.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Blacklist拡張機能のCRXファイルをダウンロード

Blacklist拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Blacklist Blacklist
ID jbpccandodannohfaoncogijbkfcmpgo
公式URL https://chrome.google.com/webstore/detail/blacklist/jbpccandodannohfaoncogijbkfcmpgo
説明 Blacklist is a very simple website blocker designed for personal use.
ファイルサイズ 575 KB
インストール数 34,267
現在のバージョン 0.93
最終更新日 2019-12-09
公開日 2019-12-09
評価 3.71/5 合計 104 レビュー
開発者 http://rahulgi.com
支払い方法 free
拡張機能のウェブサイト https://rahulgi.com/blacklist
対応言語 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"
}