Selective Image Blocker

When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls.

Selective Image Blocker란 무엇입니까?

Selective Image Blocker은(는) twongers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls."입니다.

확장 프로그램 스크린샷

screenshot

Selective Image Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Selective Image Blocker allows you to block images that match ANY keywords you specify!

This extensions is not perfect, but attempts to protect you from images you may not want to see. Examples include:

- Snakes
- Spiders
- Children
- Monsters
- Ghosts
- Presidents

== UPDATED VERSION 1.1 ==
- Keywords can be locked with a password or PIN for parental controls
- Will now hide images that are revealed through scrolling                    

확장 프로그램 기본 정보

이름 Selective Image Blocker Selective Image Blocker
ID bdimdjhcpdbgdnmclfgmlapnpokafhpe
공식 URL https://chromewebstore.google.com/detail/selective-image-blocker/bdimdjhcpdbgdnmclfgmlapnpokafhpe
설명 When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls.
파일 크기 149 KB
설치 횟수 710
현재 버전 1.1
최근 업데이트 2020-11-19
출시 날짜 2019-04-15
평점 3.25/5 총 12 개의 평점
개발자 twongers
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Selective Image Blocker",
    "description": "When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls.",
    "version": "1.1",
    "icons": {
        "32": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "bg.jpg"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "snakeblocker.css"
            ],
            "js": [
                "jquery.js",
                "chrome.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}