Image and Video Remover

You will find NO images or videos on the pages you view as long as this extension is activated.

Wat is Image and Video Remover?

Image and Video Remover is een Chrome-extensie ontwikkeld door Cary Stothart, en de belangrijkste functie is "You will find NO images or videos on the pages you view as long as this extension is activated.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Image and Video Remover

Download Image and Video Remover-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Image and Video Remover Image and Video Remover
ID cceldmeigcfcpamajgnlapepcocegjce
Officiële URL https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce
Beschrijving You will find NO images or videos on the pages you view as long as this extension is activated.
Bestandsgrootte 646 KB
Aantal Installaties 19
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-12-24
Publicatiedatum 2020-12-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Cary Stothart
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}