DOM Destroyer
Delete anything on a website with a click.
Wat is DOM Destroyer?
DOM Destroyer is een Chrome-extensie ontwikkeld door Phil Schleihauf, en de belangrijkste functie is "Delete anything on a website with a click.".
Extensie Screenshots
Download het CRX-bestand van de extensie DOM Destroyer
Download DOM Destroyer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | cgkjfaoibdibeghgeplabcbineebklgf |
| Officiële URL | https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf |
| Beschrijving | Delete anything on a website with a click. |
| Bestandsgrootte | 12.62 KB |
| Aantal Installaties | 2,836 |
| Huidige Versie | 0.3 |
| Laatst Bijgewerkt | 2021-03-29 |
| Publicatiedatum | 2014-02-25 |
| Beoordeling | 3.76/5 Totaal 17 Beoordelingen |
| Ontwikkelaar | Phil Schleihauf |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://github.com/uniphil/dom-destroyer |
| Help Pagina-URL | http://github.com/uniphil/dom-destroyer/issues |
| Ondersteunde Talen | 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"
} | |