Open Image in Old Tab

Open Image in Old Tab

Restores the legacy View Image context menu behavior

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Open Image in Old Tab",
  "version": "0.1.3",
  "description": "Restores the legacy View Image context menu behavior",
  "developer": {
    "name": "defkev"
  },
  "applications": {
    "gecko": {
      "id": "view-image@defkev",
      "strict_min_version": "88.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "*://*/*",
    "downloads",
    "menus"
  ],
  "web_accessible_resources": [
    "userChrome.css"
  ]
}