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 |
官方網址 | 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" ] } |