Open Selected Links

Open Selected Links

Opens multiple links in the selected content in the current or new window or a tab group.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open Selected Links",
  "version": "1.7.4",
  "description": "Opens multiple links in the selected content in the current or new window or a tab group.",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Open Selected Links"
  },
  "commands": {
    "osl_in_tabs": {
      "description": "Open selected links in new tabs in the current window"
    },
    "osl_in_window": {
      "description": "Open selected links in a new window"
    },
    "osl_in_tab_group": {
      "description": "Open selected links in a new tab group in the current window"
    }
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "tabGroups"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}