Nuke anything reloaded

Allows you to hide almost anything via context menu.

Wat is Nuke anything reloaded?

Nuke anything reloaded is een Chrome-extensie ontwikkeld door redgizmo75, en de belangrijkste functie is "Allows you to hide almost anything via context menu.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Nuke anything reloaded

Download Nuke anything reloaded-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Nuke anything reloaded Nuke anything reloaded
ID pfmoigombklcdimgnlmhmohjdihgdmdc
Officiële URL https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc
Beschrijving Allows you to hide almost anything via context menu.
Bestandsgrootte 34.68 KB
Aantal Installaties 495
Huidige Versie 1.0
Laatst Bijgewerkt 2017-09-16
Publicatiedatum 2017-09-16
Beoordeling 2.60/5 Totaal 5 Beoordelingen
Ontwikkelaar redgizmo75
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}