Show This Image

Show This Image

Visualizes blocked images and provides a menu option to load them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show This Image",
  "version": "3.3",
  "description": "Visualizes blocked images and provides a menu option to load them.",
  "author": "Martin Berka",
  "short_name": "Show Image",
  "minimum_chrome_version": "35",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*"
      ],
      "js": [
        "pageStyler.js"
      ]
    }
  ],
  "icons": {
    "16": "16-context.png",
    "48": "48-detail.png",
    "128": "128-icon.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "contextMenus",
    "http://*/*",
    "https://*/*",
    "ftp://*/*",
    "contentSettings",
    "tabs",
    "storage"
  ]
}