Image and Video Remover

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

Image and Video Remover क्या है?

Image and Video Remover Cary Stothart द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "You will find NO images or videos on the pages you view as long as this extension is activated."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Image and Video Remover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Image and Video Remover Image and Video Remover
ID cceldmeigcfcpamajgnlapepcocegjce
आधिकारिक URL https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce
विवरण You will find NO images or videos on the pages you view as long as this extension is activated.
फ़ाइल का आकार 646 KB
स्थापना संख्या 19
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-12-24
प्रकाशन तिथि 2020-12-24
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Cary Stothart
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
}