But really open image in new tab

But really open image in new tab

But really open image in new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "But really open image in new tab",
  "description": "But really open image in new tab",
  "version": "0.2",
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "icons": {
    "128": "icons/icon.png"
  },
  "background": {
    "service_worker": "js/main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "css": []
    }
  ]
}