Open Image In New Tab

Open Image In New Tab

Adds a context menu item to open images embedded in a website on their own in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.1.0",
  "default_locale": "en",
  "developer": {
    "name": "MethodGrab",
    "url": "https://github.com/methodgrab/firefox-open-image-in-new-tab"
  },
  "icons": {
    "48": "img/logo.svg",
    "96": "img/logo.svg"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0"
    }
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  }
}