Remove Assets
Actively attempts to remove images, iframes and styles from the current tab, until turned off.
Τι είναι το Remove Assets;
Το Remove Assets είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον luisnaia, και η κύρια λειτουργία του είναι "Actively attempts to remove images, iframes and styles from the current tab, until turned off.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Remove Assets
Λήψη αρχείων επέκτασης Remove Assets σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | lnaimaoofnimhbfiaonkeibgfpolhong |
Επίσημο URL | https://chrome.google.com/webstore/detail/remove-assets/lnaimaoofnimhbfiaonkeibgfpolhong |
Περιγραφή | Actively attempts to remove images, iframes and styles from the current tab, until turned off. |
Μέγεθος Αρχείου | 208 KB |
Αριθμός Εγκαταστάσεων | 113 |
Τρέχουσα Έκδοση | 1.2.1 |
Τελευταία Ενημέρωση | 2016-04-04 |
Ημερομηνία Δημοσίευσης | 2016-04-04 |
Αξιολόγηση | 4.83/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | luisnaia |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/darkbls/removeassets |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/darkbls/removeassets |
Υποστηριζόμενες Γλώσσες | 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 } } |