DOM Destroyer
Delete anything on a website with a click.
O que é DOM Destroyer?
DOM Destroyer é uma extensão do Chrome desenvolvida por Phil Schleihauf, e sua principal característica é "Delete anything on a website with a click.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão DOM Destroyer
Baixe arquivos de extensão DOM Destroyer 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
DOM Destroyer empowers you to remove anything that annoys you from a web page by just clicking on it. Get rid of newsletter popups, content-hiding overlays, and all kinds of other noisy clutter! Note that this extension only temporarily hides elements from your view -- to get them back, just refresh the page.
Informações Básicas da Extensão
Nome | DOM Destroyer |
ID | cgkjfaoibdibeghgeplabcbineebklgf |
URL Oficial | https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf |
Descrição | Delete anything on a website with a click. |
Tamanho do Arquivo | 12.62 KB |
Contagem de Instalações | 2,836 |
Versão Atual | 0.3 |
Última Atualização | 2021-03-29 |
Data de Publicação | 2014-02-25 |
Classificação | 3.76/5 Total de 17 Avaliações |
Desenvolvedor | Phil Schleihauf |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://github.com/uniphil/dom-destroyer |
URL da Página de Ajuda | http://github.com/uniphil/dom-destroyer/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DOM Destroyer", "description": "Delete anything on a website with a click.", "version": "0.3", "browser_action": { "default_title": "Destroy DOM", "default_icon": "destroy_128.png" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ] }, "commands": { "toggle-armed": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Toggle DOM destruction mode" } }, "homepage_url": "http:\/\/github.com\/uniphil\/dom-destroyer" } |