Remove Element

Creates a contextual menu item to remove an element from the DOM

Cos'è Remove Element?

Remove Element è un'estensione di Chrome sviluppata da https://weilstreet.com, e la sua funzione principale è "Creates a contextual menu item to remove an element from the DOM".

Screenshot dell'Estensione

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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

Informazioni di Base sull'Estensione

Nome Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
URL Ufficiale https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Descrizione Creates a contextual menu item to remove an element from the DOM
Dimensione del File 6.35 KB
Conteggio Installazioni 2,523
Versione Corrente 1.0.2
Ultimo Aggiornamento 2018-09-05
Data di Pubblicazione 2018-09-04
Valutazione 3.94/5 Totale 32 Valutazioni
Sviluppatore https://weilstreet.com
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}