Selective Image Blocker

Selective Image Blocker

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "css": [
        "snakeblocker.css"
      ],
      "js": [
        "jquery.js",
        "chrome.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2
}