Deletion Prank
Delete any element that is clicked
O que é Deletion Prank?
Deletion Prank é uma extensão do Chrome desenvolvida por skeys apps, e sua principal característica é "Delete any element that is clicked".
Baixar o arquivo CRX da Extensão Deletion Prank
Baixe arquivos de extensão Deletion Prank no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | fbepklogcpfkgbfcoinahppdebnahdja |
URL Oficial | https://chrome.google.com/webstore/detail/deletion-prank/fbepklogcpfkgbfcoinahppdebnahdja |
Descrição | Delete any element that is clicked |
Tamanho do Arquivo | 60.54 KB |
Contagem de Instalações | 2,000 |
Versão Atual | 0.0.3 |
Última Atualização | 2016-02-01 |
Data de Publicação | 2016-02-01 |
Classificação | 3.67/5 Total de 6 Avaliações |
Desenvolvedor | skeys apps |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |