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
官方網址 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
}