elementZapper

Disappear at once!

Cos'è elementZapper?

elementZapper è un'estensione di Chrome sviluppata da http://www.dsebastien.net, e la sua funzione principale è "Disappear at once!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione elementZapper

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

                        This extension allows you to easily remove elements from Web pages.

Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone!

The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.                    

Informazioni di Base sull'Estensione

Nome elementZapper elementZapper
ID efeljanahmlnjhckmohcfbgkfdjdmnog
URL Ufficiale https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog
Descrizione Disappear at once!
Dimensione del File 18.52 KB
Conteggio Installazioni 459
Versione Corrente 1.1
Ultimo Aggiornamento 2013-05-13
Data di Pubblicazione 2013-05-13
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore http://www.dsebastien.net
Tipo di Pagamento free
Sito Web dell'Estensione http://www.dsebastien.net
URL della Pagina di Aiuto https://github.com/dsebastien/elementZapper
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elementZapper",
    "description": "Disappear at once!",
    "version": "1.1",
    "icons": {
        "128": "zap_128.png",
        "64": "zap_64.png",
        "32": "zap_32.png",
        "16": "zap_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}