Nuke anything reloaded

Allows you to hide almost anything via context menu.

Nuke anything reloaded là gì?

Nuke anything reloaded là một tiện ích mở rộng Chrome được phát triển bởi redgizmo75, và tính năng chính của nó là "Allows you to hide almost anything via context menu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Nuke anything reloaded

Tải xuống các tệp mở rộng Nuke anything reloaded dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Nuke anything reloaded Nuke anything reloaded
ID pfmoigombklcdimgnlmhmohjdihgdmdc
URL Chính Thức https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc
Mô tả Allows you to hide almost anything via context menu.
Kích Thước Tệp 34.68 KB
Số Lần Cài Đặt 495
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-09-16
Ngày Phát Hành 2017-09-16
Đánh Giá 2.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển redgizmo75
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}