SearchJumper

SearchJumper

Conduct searches for selected text/image/link effortlessly. Navigate to any search engine swiftly. Highlight searching text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.4.23",
  "default_locale": "en",
  "manifest_version": 3,
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "action": {
    "default_icon": "favicon.png",
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "js": [
        "js/searchJumperDefaultConfig.js",
        "js/traditional.js",
        "js/addons.js",
        "js/searchJumper.user.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "notifications"
  ],
  "options_ui": {
    "page": "config/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/background.js"
  }
}