Nuke anything reloaded

Allows you to hide almost anything via context menu.

Nuke anything reloaded क्या है?

Nuke anything reloaded redgizmo75 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to hide almost anything via context menu."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Nuke anything reloaded एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
        ]
    }
}