Nuke anything reloaded

Allows you to hide almost anything via context menu.

什麼是Nuke anything reloaded?

Nuke anything reloaded是由redgizmo75開發的Chrome擴展程式,該擴展的主要功能是“Allows you to hide almost anything via context menu.”。

擴展截圖

screenshot
screenshot

下載Nuke anything reloaded擴展crx文件

下載Nuke anything reloaded擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Nuke anything reloaded Nuke anything reloaded
ID pfmoigombklcdimgnlmhmohjdihgdmdc
官方網址 https://chromewebstore.google.com/detail/nuke-anything-reloaded/pfmoigombklcdimgnlmhmohjdihgdmdc
簡介 Allows you to hide almost anything via context menu.
檔案大小 34.68 KB
安裝次數 495
目前版本 1.0
更新時間 2017-09-16
上架時間 2017-09-16
評分 2.60/5 共 5 次評分
開發者 redgizmo75
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        ]
    }
}