Nuke anything reloaded

Allows you to hide almost anything via context menu.

Was ist Nuke anything reloaded?

Nuke anything reloaded ist eine Chrome-Erweiterung, die von redgizmo75 entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to hide almost anything via context menu.".

Erweiterungsscreenshots

screenshot
screenshot

Nuke anything reloaded-Erweiterungs-CRX-Datei herunterladen

Laden Sie Nuke anything reloaded-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Nuke anything reloaded Nuke anything reloaded
ID pfmoigombklcdimgnlmhmohjdihgdmdc
Offizielle URL https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc
Beschreibung Allows you to hide almost anything via context menu.
Dateigröße 34.68 KB
Installationsanzahl 495
Aktuelle Version 1.0
Letztes Update 2017-09-16
Veröffentlichungsdatum 2017-09-16
Bewertung 2.60/5 Insgesamt 5 Bewertungen
Entwickler redgizmo75
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}