Open Multiple Links

Open Multiple Links

Select text with links and open them all in new tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Open Multiple Links",
  "description": "Select text with links and open them all in new tabs",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}