Fullscreen Image

Fullscreen Image

View any image in fullscreen mode by right-clicking it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fullscreen Image",
  "version": "0.0.0.3",
  "description": "View any image in fullscreen mode by right-clicking it.",
  "author": "Jakob Kallin",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "file://*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}