URL Block

Block URLs

URL Blockとは何ですか?

URL BlockはEric Yangによって開発されたChromeの拡張機能で、その主な機能は「Block URLs」です。

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

screenshot

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

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

拡張機能の使用方法

                        Block URLs you don't want to open.

For example, you can't stop to open some webs like "facebook.com", "twitter.com" while you are working. You want to concentrate on work, but those webs are really so interesting. "URL Block" is a really good choice for you.

I have the same trouble, so I create this extension. Hope it is good for you too. 

Plz let me know if you have some trouble or advice.

My email: [email protected]                    

拡張機能の基本情報

名前 URL Block URL Block
ID fdapkdfieimlngpkffldigiajemcamlb
公式URL https://chromewebstore.google.com/detail/url-block/fdapkdfieimlngpkffldigiajemcamlb
説明 Block URLs
ファイルサイズ 48.34 KB
インストール数 1,756
現在のバージョン 1.2.1
最終更新日 2024-03-04
公開日 2017-11-27
評価 3.50/5 合計 8 レビュー
開発者 Eric Yang
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.1",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "js\/service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/urlBlock.js",
                "js\/general.js"
            ]
        }
    ],
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "action": {
        "default_icon": "image\/icon48.png",
        "default_title": "URL Block",
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "default_locale": "en"
}