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 - это расширение Chrome, разработанное twongers, и его основная функция - "When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Selective Image Blocker

Скачайте файлы расширений Selective Image Blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
}