Deletion Prank

Delete any element that is clicked

Deletion Prank क्या है?

Deletion Prank skeys apps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Delete any element that is clicked"।

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

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

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

                        This extension can be enabled and disabled at will within the page, unlike my other extensions. Basically, when the extension is active, any element clicked on the page will be instantaneously deleted before the browser can even activate it. This applies to text, links, and more!                    

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

नाम Deletion Prank Deletion Prank
ID fbepklogcpfkgbfcoinahppdebnahdja
आधिकारिक URL https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja
विवरण Delete any element that is clicked
फ़ाइल का आकार 60.54 KB
स्थापना संख्या 2,000
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2016-02-01
प्रकाशन तिथि 2016-02-01
रेटिंग 3.67/5 कुल 6 रेटिंग्स
डेवलपर skeys apps
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deletion Prank",
    "short_name": "Deletion Prank",
    "description": "Delete any element that is clicked",
    "version": "0.0.3",
    "browser_action": {
        "default_image": "asets\/enabled_256.png"
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "icons": {
        "256": "assets\/enabled_256.png"
    },
    "background": {
        "scripts": [
            "iconcontroller.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}