Image and Video Remover

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

Was ist Image and Video Remover?

Image and Video Remover ist eine Chrome-Erweiterung, die von Cary Stothart entwickelt wurde, und ihr Hauptmerkmal ist "You will find NO images or videos on the pages you view as long as this extension is activated.".

Erweiterungsscreenshots

screenshot

Image and Video Remover-Erweiterungs-CRX-Datei herunterladen

Laden Sie Image and Video Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Image and Video Remover Image and Video Remover
ID cceldmeigcfcpamajgnlapepcocegjce
Offizielle URL https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce
Beschreibung You will find NO images or videos on the pages you view as long as this extension is activated.
Dateigröße 646 KB
Installationsanzahl 19
Aktuelle Version 1.0.0
Letztes Update 2020-12-24
Veröffentlichungsdatum 2020-12-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Cary Stothart
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}