Remove Element

This extension will remove any element

Cos'è Remove Element?

Remove Element è un'estensione di Chrome sviluppata da mnetzer, e la sua funzione principale è "This extension will remove any element".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Remove Element

Scarica i file di estensione Remove Element 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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

Informazioni di Base sull'Estensione

Nome Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
URL Ufficiale https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Descrizione This extension will remove any element
Dimensione del File 150 KB
Conteggio Installazioni 81
Versione Corrente 1.0
Ultimo Aggiornamento 2021-02-02
Data di Pubblicazione 2021-02-02
Sviluppatore mnetzer
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/moishinetzer/remove-element
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}