Image and Video Remover
You will find NO images or videos on the pages you view as long as this extension is activated.
Cos'è Image and Video Remover?
Image and Video Remover è un'estensione di Chrome sviluppata da Cary Stothart, e la sua funzione principale è "You will find NO images or videos on the pages you view as long as this extension is activated.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Image and Video Remover
Scarica i file di estensione Image and Video Remover 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
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.
Informazioni di Base sull'Estensione
Nome | |
ID | cceldmeigcfcpamajgnlapepcocegjce |
URL Ufficiale | https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce |
Descrizione | You will find NO images or videos on the pages you view as long as this extension is activated. |
Dimensione del File | 646 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-12-24 |
Data di Pubblicazione | 2020-12-24 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Cary Stothart |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |