DOM Destroyer
Delete anything on a website with a click.
Co to jest DOM Destroyer?
DOM Destroyer to rozszerzenie Chrome opracowane przez Phil Schleihauf, a jego główną funkcją jest „Delete anything on a website with a click.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia DOM Destroyer
Pobierz pliki rozszerzeń DOM Destroyer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cgkjfaoibdibeghgeplabcbineebklgf |
| Oficjalny URL | https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf |
| Opis | Delete anything on a website with a click. |
| Rozmiar pliku | 12.62 KB |
| Liczba instalacji | 2,836 |
| Aktualna Wersja | 0.3 |
| Ostatnia Aktualizacja | 2021-03-29 |
| Data Publikacji | 2014-02-25 |
| Ocena | 3.76/5 Łącznie 17 Oceny |
| Deweloper | Phil Schleihauf |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | http://github.com/uniphil/dom-destroyer |
| Adres URL Strony Pomocy | http://github.com/uniphil/dom-destroyer/issues |
| Obsługiwane Języki | 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"
} | |