Image and Video Remover

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

Qu'est-ce que Image and Video Remover ?

Image and Video Remover est une extension Chrome développée par Cary Stothart, et sa fonction principale est "You will find NO images or videos on the pages you view as long as this extension is activated.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Image and Video Remover

Téléchargez les fichiers d'extension Image and Video Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Image and Video Remover Image and Video Remover
ID cceldmeigcfcpamajgnlapepcocegjce
URL Officiel 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.
Taille du Fichier 646 KB
Nombre d'Installations 19
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-12-24
Date de Publication 2020-12-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur Cary Stothart
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}