Easy Image Control

Easy Image Control

Block images, videos, audio connections, hide title, hide favicon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Easy Image Control",
  "description": "Block images, videos, audio connections, hide title, hide favicon.",
  "version": "4.0",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "browsingData"
  ],
  "background": {
    "page": "background.html"
  },
  "options_page": "exclude.html",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/common.js",
        "js/contentscript.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_popup": "popup.html"
  }
}