Selection Menu

Selection Menu

Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Selection Menu",
  "version": "3.1.0",
  "description": "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)",
  "homepage_url": "https://github.com/mad1ost/selection-menu",
  "icons": {
    "32": "icons/icon-32.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "selection-menu.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "js": [
        "selection-menu-sub.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ]
}