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
官方網址 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
電子郵箱 [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"
}