Remove HTML Elements
Easily remove desired HTML5 elements with just one click!
¿Qué es Remove HTML Elements?
Remove HTML Elements es una extensión de Chrome desarrollada por Sevina, y su función principal es "Easily remove desired HTML5 elements with just one click!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Remove HTML Elements
Descarga archivos de extensión Remove HTML Elements en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Remove HTML Elements add-on let you easily remove desired elements in any HTML5 webpage. Simply click on the toolbar button to activate the add-on. Please note that this add-on requires "user action" to be activated. Once it is active, please hover on any element within the page with your mouse. When the mouse pointer is over any HTML5 element, it will highlighted with red color. Now, when you click on the highlighted element, it will be removed from the page. Please note that, this add-on does not delete the elements from the page, instead, it changes the display property to "none". The add-on supports undo operation via (Ctrl + Z) keyboard combination. If you found a bug to report, or have a feature request in mind, please fill out the bug report form in the add-on's homepage (https://mybrowseraddon.com/remove-html-elements.html).
Información Básica de la Extensión
Nombre | Remove HTML Elements |
ID | enegojdnkeicfoiknhfjaedhlckeahmf |
URL Oficial | https://chromewebstore.google.com/detail/remove-html-elements/enegojdnkeicfoiknhfjaedhlckeahmf |
Descripción | Easily remove desired HTML5 elements with just one click! |
Tamaño del Archivo | 33.31 KB |
Cantidad de Instalaciones | 2,176 |
Versión Actual | 0.1.3 |
Última Actualización | 2023-02-28 |
Fecha de Publicación | 2018-11-26 |
Calificación | 3.73/5 Total de 15 Calificaciones |
Desarrollador | Sevina |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://mybrowseraddon.com/remove-html-elements.html |
URL de la Página de Ayuda | https://mybrowseraddon.com/remove-html-elements.html |
URL de la Página de Política de Privacidad | https://mybrowseraddon.com/privacy-policy/developer/sevina.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.3", "manifest_version": 3, "offline_enabled": true, "name": "Remove HTML Elements", "homepage_url": "https:\/\/mybrowseraddon.com\/remove-html-elements.html", "description": "Easily remove desired HTML5 elements with just one click!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "data\/content_script\/icons\/remove.png" ] } ], "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_title": "Remove HTML Elements", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |