DOM Destroyer
Delete anything on a website with a click.
Что такое DOM Destroyer?
DOM Destroyer - это расширение Chrome, разработанное Phil Schleihauf, и его основная функция - "Delete anything on a website with a click.".
Снимки экрана расширения
Скачать файл CRX расширения DOM Destroyer
Скачайте файлы расширений DOM Destroyer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | cgkjfaoibdibeghgeplabcbineebklgf |
| Официальный URL | https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf |
| Описание | Delete anything on a website with a click. |
| Размер файла | 12.62 KB |
| Количество установок | 2,836 |
| Текущая Версия | 0.3 |
| Последнее Обновление | 2021-03-29 |
| Дата публикации | 2014-02-25 |
| Рейтинг | 3.76/5 Всего 17 оценок |
| Разработчик | Phil Schleihauf |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://github.com/uniphil/dom-destroyer |
| URL страницы помощи | http://github.com/uniphil/dom-destroyer/issues |
| Поддерживаемые языки | 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"
} | |