background-search

background-search

Search for selected messages in background tabs. Chrome's context menu shifts focus to a new tab. This extension allows you to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "background-search",
  "version": "0.4",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "128": "img/128.png"
  },
  "background": {
    "service_worker": "./src/background.js"
  },
  "options_ui": {
    "page": "./src/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "contextMenus"
  ]
}