RemoveElement

Remove HTML elements from the right-click context menu

Cos'è RemoveElement?

RemoveElement è un'estensione di Chrome sviluppata da sa1hon, e la sua funzione principale è "Remove HTML elements from the right-click context menu".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione RemoveElement

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

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

Informazioni di Base sull'Estensione

Nome RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
URL Ufficiale https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Descrizione Remove HTML elements from the right-click context menu
Dimensione del File 11.65 KB
Conteggio Installazioni 94
Versione Corrente 0.0.6
Ultimo Aggiornamento 2023-03-02
Data di Pubblicazione 2019-12-29
Sviluppatore sa1hon
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/saihon/remove-element
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}