Click-to-hide

Hide elements on page by clicking on them.

Click-to-hide क्या है?

Click-to-hide http://mattconn.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide elements on page by clicking on them."।

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

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

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

                        # Click-to-hide
Chrome extension to delete element on page by clicking on it. Useful for ads and other page blocking elements.

## To Use:
Click on the Click-to-hide icon to enable the extension. You will know that the extension is enabled when you see your cursor appear as a crosshair. The script will then be enabled for one click at a time.

Cick on any element on the page to effectively remove or hide it. To remove another element on the page, click on the extension icon again to re-enable, and repeat this process for any remaining elements on the page that you wish to remove.                    

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

नाम Click-to-hide Click-to-hide
ID lcdicpnpgjfaodmccefekkfecadllbjg
आधिकारिक URL https://chrome.google.com/webstore/detail/click-to-hide/lcdicpnpgjfaodmccefekkfecadllbjg
विवरण Hide elements on page by clicking on them.
फ़ाइल का आकार 5.16 KB
स्थापना संख्या 127
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-02-13
प्रकाशन तिथि 2018-02-13
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर http://mattconn.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mattConn/chrome-click-to-hide
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click-to-hide",
    "description": "Hide elements on page by clicking on them.",
    "version": "1.0.1",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Click-to-hide"
    },
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2
}