Google Full Image Opener

Google Full Image Opener

After clicking an image from search results, use the context menu (right-click) to view the current image.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Full Image Opener",
  "short_name": "google-full-image-opener",
  "description": "After clicking an image from search results, use the context menu (right-click) to view the current image.",
  "version": "2.0",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "https://www.google.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "128": "icon128.png"
  }
}