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开发的Chrome扩展程序,该扩展的主要功能是“You will find NO images or videos on the pages you view as long as this extension is activated.”。

扩展截图

screenshot

下载Image and Video Remover扩展crx文件

下载Image and Video Remover扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}