Image and Video Remover
You will find NO images or videos on the pages you view as long as this extension is activated.
Hvad er Image and Video Remover?
Image and Video Remover er en Chrome-udvidelse udviklet af Cary Stothart, og dens hovedfunktion er "You will find NO images or videos on the pages you view as long as this extension is activated.".
Udvidelsesskærmbilleder
Download Image and Video Remover-udvidelses-CRX-fil
Download Image and Video Remover-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | cceldmeigcfcpamajgnlapepcocegjce |
Officiel URL | https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce |
Beskrivelse | You will find NO images or videos on the pages you view as long as this extension is activated. |
Filstørrelse | 646 KB |
Antal Installationer | 19 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2020-12-24 |
Udgivelsesdato | 2020-12-24 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Cary Stothart |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } |