Image and Video Remover
You will find NO images or videos on the pages you view as long as this extension is activated.
Τι είναι το Image and Video Remover;
Το Image and Video Remover είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cary Stothart, και η κύρια λειτουργία του είναι "You will find NO images or videos on the pages you view as long as this extension is activated.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Image and Video Remover
Λήψη αρχείων επέκτασης Image and Video Remover σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Removes all images and videos on the websites you view. Useful for viewing websites containing images or videos you find offensive. For example, this extension would be useful for arachnophobic users who want to read about spiders but who do not want to be bombarded with pictures or videos of spiders.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cceldmeigcfcpamajgnlapepcocegjce |
Επίσημο URL | https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce |
Περιγραφή | You will find NO images or videos on the pages you view as long as this extension is activated. |
Μέγεθος Αρχείου | 646 KB |
Αριθμός Εγκαταστάσεων | 19 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2020-12-24 |
Ημερομηνία Δημοσίευσης | 2020-12-24 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Cary Stothart |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image and Video Remover", "version": "1.0.0", "description": "You will find NO images or videos on the pages you view as long as this extension is activated.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "css": [ "pageConcealer.css" ], "js": [ "pageConcealer.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "removeMedia.js" ], "all_frames": true } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2 } |