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" ] } |