Nuke Anything

Allows hiding of almost anything via context menu.

Was ist Nuke Anything?

Nuke Anything ist eine Chrome-Erweiterung, die von patrick.abisalloum entwickelt wurde, und ihr Hauptmerkmal ist "Allows hiding of almost anything via context menu.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Nuke Anything-Erweiterungs-CRX-Datei herunterladen

Laden Sie Nuke Anything-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 anything in a page by activating "Nuke on [x] key" mode.

In this mode, you can remove as many elements as you want by repeatedly pressing the [X] key on the keyboard while moving the mouse around.

The [U] key will undo last remove.
The [Esc] Key will exit this mode and go back to normal.

Please note that you can undo removing of objects only, undoing the removing of selections is not yet supported.


You can also remove items by right clicking and choosing remove                    

Grundlegende Informationen zur Erweiterung

Name Nuke Anything Nuke Anything
ID ghoehocgoliemjdnbjjcaohgofgpkfgg
Offizielle URL https://chromewebstore.google.com/detail/nuke-anything/ghoehocgoliemjdnbjjcaohgofgpkfgg
Beschreibung Allows hiding of almost anything via context menu.
Dateigröße 53.12 KB
Installationsanzahl 4,365
Aktuelle Version 2.4.1
Letztes Update 2021-07-29
Veröffentlichungsdatum 2017-10-09
Bewertung 3.08/5 Insgesamt 13 Bewertungen
Entwickler patrick.abisalloum
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen de,en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "applications": {
        "gecko": {
            "id": "{1ced4832-f06e-413f-aa14-9eb63ad40ace}"
        }
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "author": "Patrick Abi Salloum",
    "version": "2.4.1",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icons\/nae-16.png",
        "32": "icons\/nae-32.png",
        "48": "icons\/nae-48.png",
        "96": "icons\/nae-96.png"
    },
    "browser_action": {
        "default_icon": "icons\/nae-32.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "init.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "nae.js"
        ]
    },
    "commands": {
        "nuke_on_x": {
            "suggested_key": {
                "default": "Alt+Shift+X"
            },
            "description": "__MSG_menu_nuke_on_x__"
        }
    }
}