Right-click: Open in new tab

Right-click: Open in new tab

A context menu to open image/video/audio/frame in a new tab based on the add-on: "Open image in a new tab" by Didier Lafleur https://addons.mozilla.org/zh-TW/firefox/addon/open-image-in-a-new-tab/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Open in new tab",
  "version": "0.3resigned1",
  "manifest_version": 2,
  "description": "A context menu to open things in a new tab  ",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4a9cf29c-3661-4a7c-8df3-0e046c9660da}"
    }
  }
}