Remove Assets
Actively attempts to remove images, iframes and styles from the current tab, until turned off.
Was ist Remove Assets?
Remove Assets ist eine Chrome-Erweiterung, die von luisnaia entwickelt wurde, und ihr Hauptmerkmal ist "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".
Erweiterungsscreenshots
Remove Assets-Erweiterungs-CRX-Datei herunterladen
Laden Sie Remove Assets-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
Offizielle URL | https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong |
Beschreibung | Actively attempts to remove images, iframes and styles from the current tab, until turned off. |
Dateigröße | 208 KB |
Installationsanzahl | 113 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2016-04-04 |
Veröffentlichungsdatum | 2016-04-04 |
Bewertung | 4.83/5 Insgesamt 6 Bewertungen |
Entwickler | luisnaia |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/darkbls/removeassets |
Hilfeseite URL | https://github.com/darkbls/removeassets |
Unterstützte Sprachen | 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 } } |