Hide it now!

Hide unwanted element on any websites!

Hide it now! क्या है?

Hide it now! supertomlai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide unwanted element on any websites!"।

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

screenshot

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

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

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

                        Hide unwanted ADs or view blocking stuff on the webpage on a mouse click!
This Extension will add a right click menu item which let you instantly hide the selected AD/item on the displayed webpage!
User may be required to reload webpages to use this extension after installation.                    

एक्सटेंशन की मूल जानकारी

नाम Hide it now! Hide it now!
ID ielggdbamjmfoiennlibhkknhopncipl
आधिकारिक URL https://chromewebstore.google.com/detail/hide-it-now/ielggdbamjmfoiennlibhkknhopncipl
विवरण Hide unwanted element on any websites!
फ़ाइल का आकार 28.92 KB
स्थापना संख्या 168
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-03-19
प्रकाशन तिथि 2015-03-18
रेटिंग 3.63/5 कुल 8 रेटिंग्स
डेवलपर supertomlai
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide it now!",
    "description": "Hide unwanted element on any websites!",
    "omnibox": {
        "keyword": "hide"
    },
    "icons": {
        "16": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "1.0",
    "minimum_chrome_version": "9",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "mouseclick.js"
            ],
            "css": [
                "hide_element.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}