Delete Elements
Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!
Что такое Delete Elements?
Delete Elements - это расширение Chrome, разработанное Kira L, и его основная функция - "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!".
Снимки экрана расширения
Скачать файл CRX расширения Delete Elements
Скачайте файлы расширений Delete Elements в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
My chrome extension allows you to delete any element that you don't want to see on a website using alt+click. After installing this extension, you can focus on the content of a website, instead of the navigation bars, side-bars, and unwanted images. Enjoy!
Основная информация о расширении
Название | Delete Elements |
ID | egaeolhpclgmcegebneaibocfffkgode |
Официальный URL | https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode |
Описание | Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see! |
Размер файла | 7.14 KB |
Количество установок | 31 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-09-11 |
Дата публикации | 2020-09-11 |
Разработчик | Kira L |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://kiraprograms.com |
URL страницы помощи | http://kiraprograms.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Delete Elements", "version": "1.0", "description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!", "permissions": [], "page_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "add_to_website.js" ] } ], "manifest_version": 2 } |