Selective Image Blocker

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

Vad är Selective Image Blocker?

Selective Image Blocker är en Chrome-tillägg utvecklad av twongers, och dess huvudfunktion är "When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls.".

Tilläggsskärmbilder

screenshot

Ladda ner Selective Image Blocker-förlängningens CRX-fil

Ladda ner Selective Image Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Selective Image Blocker Selective Image Blocker
ID bdimdjhcpdbgdnmclfgmlapnpokafhpe
Officiell webbadress https://chromewebstore.google.com/detail/selective-image-blocker/bdimdjhcpdbgdnmclfgmlapnpokafhpe
Beskrivning When visiting webpages, blocks photos of keywords you define. Keywords can be locked with a pin for parental controls.
Filstorlek 149 KB
Antal Installationer 710
Aktuell Version 1.1
Senast Uppdaterad 2020-11-19
Publiceringsdatum 2019-04-15
Betyg 3.25/5 Totalt 12 Betyg
Utvecklare twongers
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}