removeanything

sometimes you just want to get rid of an element quickly

Cos'è removeanything?

removeanything è un'estensione di Chrome sviluppata da zeyus, e la sua funzione principale è "sometimes you just want to get rid of an element quickly".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione removeanything

Scarica i file di estensione removeanything 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 is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

Informazioni di Base sull'Estensione

Nome removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
URL Ufficiale https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Descrizione sometimes you just want to get rid of an element quickly
Dimensione del File 11.31 KB
Conteggio Installazioni 230
Versione Corrente 0.1.0
Ultimo Aggiornamento 2015-02-16
Data di Pubblicazione 2015-02-16
Valutazione 3.17/5 Totale 6 Valutazioni
Sviluppatore zeyus
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.zeyus.com/
URL della Pagina di Aiuto https://github.com/zeyus/remove-anything
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}