Nuke anything reloaded

Allows you to hide almost anything via context menu.

Cos'è Nuke anything reloaded?

Nuke anything reloaded è un'estensione di Chrome sviluppata da redgizmo75, e la sua funzione principale è "Allows you to hide almost anything via context menu.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Nuke anything reloaded

Scarica i file di estensione Nuke anything reloaded 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

                        Allows you to hide almost any object on a web page. Just right click on the object you want to disappear and chose 'Remove this object' from context menu. You can remove as many objects as you want and you can restore the objects again. Removal is only temporary, if you reload the page everything is as it was. Nothing is stored by this extension.

This extension is inspired by 'Nuke anyhting (enhanced)' addon for FF.

SourceCode can be found on GitHub:

https://github.com/redgizmo75/nuke_anything_reloaded                    

Informazioni di Base sull'Estensione

Nome Nuke anything reloaded Nuke anything reloaded
ID pfmoigombklcdimgnlmhmohjdihgdmdc
URL Ufficiale https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc
Descrizione Allows you to hide almost anything via context menu.
Dimensione del File 34.68 KB
Conteggio Installazioni 495
Versione Corrente 1.0
Ultimo Aggiornamento 2017-09-16
Data di Pubblicazione 2017-09-16
Valutazione 2.60/5 Totale 5 Valutazioni
Sviluppatore redgizmo75
Email [email protected]
Tipo di Pagamento free
Lingue Supportate de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.0",
    "default_locale": "en",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "icon_nuke_16.png",
        "128": "icon_nuke_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}