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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}