Remove Assets
Actively attempts to remove images, iframes and styles from the current tab, until turned off.
Cos'è Remove Assets?
Remove Assets è un'estensione di Chrome sviluppata da luisnaia, e la sua funzione principale è "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remove Assets
Scarica i file di estensione Remove Assets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
URL Ufficiale | https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong |
Descrizione | Actively attempts to remove images, iframes and styles from the current tab, until turned off. |
Dimensione del File | 208 KB |
Conteggio Installazioni | 113 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2016-04-04 |
Data di Pubblicazione | 2016-04-04 |
Valutazione | 4.83/5 Totale 6 Valutazioni |
Sviluppatore | luisnaia |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/darkbls/removeassets |
URL della Pagina di Aiuto | https://github.com/darkbls/removeassets |
Lingue Supportate | 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 } } |