IMG inspector

IMG inspector

Transforms any page with links to images in a gallery with thumbnails and lightbox viewer. Added Links Generator.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.6.1",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/16.png",
      "38": "images/48.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "views/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/service.js",
        "scripts/lightLightbox.js",
        "scripts/content_script.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "http://*/*",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "styles/inject.css"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}