Deletion Prank
Delete any element that is clicked
什么是Deletion Prank?
Deletion Prank是由skeys apps开发的Chrome扩展程序,该扩展的主要功能是“Delete any element that is clicked”。
下载Deletion Prank扩展crx文件
下载Deletion Prank扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
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" ] } |