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
Eメール [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
}