removeanything

sometimes you just want to get rid of an element quickly

removeanything क्या है?

removeanything zeyus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "sometimes you just want to get rid of an element quickly"।

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

screenshot

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

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

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

                        This is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

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

नाम removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
आधिकारिक URL https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
विवरण sometimes you just want to get rid of an element quickly
फ़ाइल का आकार 11.31 KB
स्थापना संख्या 230
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2015-02-16
प्रकाशन तिथि 2015-02-16
रेटिंग 3.17/5 कुल 6 रेटिंग्स
डेवलपर zeyus
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.zeyus.com/
सहायता पृष्ठ URL https://github.com/zeyus/remove-anything
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}