Open image in a new tab

Open image in a new tab

A context menu to open images in a new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Open image in a new tab",
  "version": "0.2resigned1",
  "manifest_version": 2,
  "description": "A context menu to open images in a new tab  ",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "icons": {
    "64": "icon64.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{7276f3bb-de56-4b5a-b940-88b62731d409}"
    }
  }
}