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 là gì?

Image and Video Remover là một tiện ích mở rộng Chrome được phát triển bởi Cary Stothart, và tính năng chính của nó là "You will find NO images or videos on the pages you view as long as this extension is activated.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Image and Video Remover

Tải xuống các tệp mở rộng Image and Video Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Image and Video Remover Image and Video Remover
ID cceldmeigcfcpamajgnlapepcocegjce
URL Chính Thức https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce
Mô tả You will find NO images or videos on the pages you view as long as this extension is activated.
Kích Thước Tệp 646 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-12-24
Ngày Phát Hành 2020-12-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Cary Stothart
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}