Image and Video Remover
You will find NO images or videos on the pages you view as long as this extension is activated.
What is Image and Video Remover?
Image and Video Remover is a Chrome extension developed by Cary Stothart, and its main feature is "You will find NO images or videos on the pages you view as long as this extension is activated.".
Extension Screenshots
Download Image and Video Remover Extension CRX File
Download Image and Video Remover extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | cceldmeigcfcpamajgnlapepcocegjce |
Official URL | https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce |
Description | You will find NO images or videos on the pages you view as long as this extension is activated. |
File Size | 646 KB |
Installation Count | 19 |
Current Version | 1.0.0 |
Last Updated | 2020-12-24 |
Publish Date | 2020-12-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Cary Stothart |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |