Image and Video Remover

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

Vad är Image and Video Remover?

Image and Video Remover är en Chrome-tillägg utvecklad av Cary Stothart, och dess huvudfunktion är "You will find NO images or videos on the pages you view as long as this extension is activated.".

Tilläggsskärmbilder

screenshot

Ladda ner Image and Video Remover-förlängningens CRX-fil

Ladda ner Image and Video Remover-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Image and Video Remover Image and Video Remover
ID cceldmeigcfcpamajgnlapepcocegjce
Officiell webbadress https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce
Beskrivning You will find NO images or videos on the pages you view as long as this extension is activated.
Filstorlek 646 KB
Antal Installationer 19
Aktuell Version 1.0.0
Senast Uppdaterad 2020-12-24
Publiceringsdatum 2020-12-24
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Cary Stothart
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}