HTML Content Blocker

Blocks desired HTML contents (script, style, image, object, media)

什麼是HTML Content Blocker?

HTML Content Blocker是由Benni開發的Chrome擴展程式,該擴展的主要功能是“Blocks desired HTML contents (script, style, image, object, media)”。

擴展截圖

screenshot

下載HTML Content Blocker擴展crx文件

下載HTML Content Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        HTML Content Blocker provides an easy interface to quickly block various HTML contents  (JS, CSS, IMG, OBJ, etc.) on any webpage. To operate, simply open the toolbar and click on the desired icon.

Key features:
1. Enables you to block desired HTML contents.
2. Currently, there are five items available to choose from (script, style, image, object, media)
3. To deactivate an operation, simply unmark the related item from toolbar popup.
4. Badge icon text shows the number of blocked items within each tab (changing the tab will update the badge number).

To report bugs, please visit the addon's homepage (https://mybrowseraddon.com/html-content-blocker.html) and fill the bug report form.                    

擴展基本資訊

名稱 HTML Content Blocker HTML Content Blocker
ID nobnkgabkebhhlgfddbemmefjnjnahoe
官方網址 https://chromewebstore.google.com/detail/html-content-blocker/nobnkgabkebhhlgfddbemmefjnjnahoe
簡介 Blocks desired HTML contents (script, style, image, object, media)
檔案大小 32.78 KB
安裝次數 5,381
目前版本 0.2.1
更新時間 2023-03-14
上架時間 2020-06-16
評分 3.79/5 共 75 次評分
開發者 Benni
電子郵箱 [email protected]
付費類型 free
擴展官網 https://mybrowseraddon.com/html-content-blocker.html
說明頁面URL https://mybrowseraddon.com/html-content-blocker.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.1",
    "manifest_version": 3,
    "name": "HTML Content Blocker",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/html-content-blocker.html",
    "description": "Blocks desired HTML contents (script, style, image, object, media)",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "HTML Content Blocker",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}