Deletion Prank
Delete any element that is clicked
What is Deletion Prank?
Deletion Prank is a Chrome extension developed by skeys apps, and its main feature is "Delete any element that is clicked".
Download Deletion Prank Extension CRX File
Download Deletion Prank extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | fbepklogcpfkgbfcoinahppdebnahdja |
Official URL | https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja |
Description | Delete any element that is clicked |
File Size | 60.54 KB |
Installation Count | 2,000 |
Current Version | 0.0.3 |
Last Updated | 2016-02-01 |
Publish Date | 2016-02-01 |
Rating | 3.67/5 Total 6 Ratings |
Developer | skeys apps |
Payment Type | free |
Supported Languages | 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" ] } |