Remove Assets
Actively attempts to remove images, iframes and styles from the current tab, until turned off.
¿Qué es Remove Assets?
Remove Assets es una extensión de Chrome desarrollada por luisnaia, y su función principal es "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Remove Assets
Descarga archivos de extensión Remove Assets 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
This simple extension will attempt to remove assets from the current tab, until turned off. It can remove every image, iframes and style sheets and/or in-line styles elements in your current tab. You can define this in options page. By default it will attempt to remove images. It can be toggled on/off by clicking on it. Once you turned it off, you may refresh your page to return the original assets. https://github.com/darkbls/removeimages
Información Básica de la Extensión
Nombre | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
URL Oficial | https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong |
Descripción | Actively attempts to remove images, iframes and styles from the current tab, until turned off. |
Tamaño del Archivo | 208 KB |
Cantidad de Instalaciones | 113 |
Versión Actual | 1.2.1 |
Última Actualización | 2016-04-04 |
Fecha de Publicación | 2016-04-04 |
Calificación | 4.83/5 Total de 6 Calificaciones |
Desarrollador | luisnaia |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/darkbls/removeassets |
URL de la Página de Ayuda | https://github.com/darkbls/removeassets |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Assets", "short_name": "Remove Assets", "description": "Actively attempts to remove images, iframes and styles from the current tab, until turned off.", "version": "1.2.1", "browser_action": { "default_icon": "icon.png", "default_title": "Remove Assets - Click to toggle" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "activeTab", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |