Open a new tab with the selected word

Open a new tab with the selected word

An extension to open a new tab with the selected word.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open a new tab with the selected word",
  "version": "1.0.0.0",
  "manifest_version": 3,
  "description": "An extension to open a new tab with the selected word.",
  "icons": {
    "16": "icons/link-16.png",
    "32": "icons/link-32.png",
    "48": "icons/link-48.png",
    "128": "icons/link-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}