Deletion Prank
Delete any element that is clicked
Vad är Deletion Prank?
Deletion Prank är en Chrome-tillägg utvecklad av skeys apps, och dess huvudfunktion är "Delete any element that is clicked".
Ladda ner Deletion Prank-förlängningens CRX-fil
Ladda ner Deletion Prank-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | |
ID | fbepklogcpfkgbfcoinahppdebnahdja |
Officiell webbadress | https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja |
Beskrivning | Delete any element that is clicked |
Filstorlek | 60.54 KB |
Antal Installationer | 2,000 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2016-02-01 |
Publiceringsdatum | 2016-02-01 |
Betyg | 3.67/5 Totalt 6 Betyg |
Utvecklare | skeys apps |
Betalningssätt | free |
Stödda Språk | 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" ] } |