HTML Content Blocker

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

Cos'è HTML Content Blocker?

HTML Content Blocker è un'estensione di Chrome sviluppata da Benni, e la sua funzione principale è "Blocks desired HTML contents (script, style, image, object, media)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione HTML Content Blocker

Scarica i file di estensione HTML Content Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HTML Content Blocker HTML Content Blocker
ID nobnkgabkebhhlgfddbemmefjnjnahoe
URL Ufficiale https://chromewebstore.google.com/detail/html-content-blocker/nobnkgabkebhhlgfddbemmefjnjnahoe
Descrizione Blocks desired HTML contents (script, style, image, object, media)
Dimensione del File 32.78 KB
Conteggio Installazioni 5,381
Versione Corrente 0.2.1
Ultimo Aggiornamento 2023-03-14
Data di Pubblicazione 2020-06-16
Valutazione 3.79/5 Totale 75 Valutazioni
Sviluppatore Benni
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://mybrowseraddon.com/html-content-blocker.html
URL della Pagina di Aiuto https://mybrowseraddon.com/html-content-blocker.html
Lingue Supportate 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"
    }
}