Nuke Anything

Allows hiding of almost anything via context menu.

Nuke Anything란 무엇입니까?

Nuke Anything은(는) patrick.abisalloum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows hiding of almost anything via context menu."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Nuke Anything 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Nuke Anything Nuke Anything
ID ghoehocgoliemjdnbjjcaohgofgpkfgg
공식 URL https://chromewebstore.google.com/detail/nuke-anything/ghoehocgoliemjdnbjjcaohgofgpkfgg
설명 Allows hiding of almost anything via context menu.
파일 크기 53.12 KB
설치 횟수 4,365
현재 버전 2.4.1
최근 업데이트 2021-07-29
출시 날짜 2017-10-09
평점 3.08/5 총 13 개의 평점
개발자 patrick.abisalloum
이메일 [email protected]
결제 유형 free
지원되는 언어 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__"
        }
    }
}