Show The Image

Show The Image

Press Ctrl/Cmd+Q to show the largest image in the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Show The Image",
  "description": "Press Ctrl/Cmd+Q to show the largest image in the page",
  "version": "1.0.0",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon_16.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "commands": {
    "show-the-image": {
      "suggested_key": {
        "default": "Ctrl+Q"
      },
      "description": "Key for showing the largest image and going back to original page"
    }
  },
  "permissions": [
    "activeTab"
  ]
}