Remove Assets
Actively attempts to remove images, iframes and styles from the current tab, until turned off.
Qu'est-ce que Remove Assets ?
Remove Assets est une extension Chrome développée par luisnaia, et sa fonction principale est "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Remove Assets
Téléchargez les fichiers d'extension Remove Assets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
URL Officiel | https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong |
Description | Actively attempts to remove images, iframes and styles from the current tab, until turned off. |
Taille du Fichier | 208 KB |
Nombre d'Installations | 113 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2016-04-04 |
Date de Publication | 2016-04-04 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | luisnaia |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/darkbls/removeassets |
URL de la Page d'Aide | https://github.com/darkbls/removeassets |
Langues Prises en Charge | 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 } } |