便捷搜索

在Google,百度,必应等等搜索引擎间进行快捷切换,搜索关键词无需重输,支持右键搜索
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "便捷搜索",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "在Google,百度,必应等等搜索引擎间进行快捷切换,搜索关键词无需重输,支持右键搜索",
  "homepage_url": "https://ishare20.net/docs/quicksearch/",
  "background": {
    "scripts": [
      "js/base.js",
      "js/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_title": "点此切换搜索",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "*://*/*",
    "storage",
    "contextMenus"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "default_locale": "zh_CN",
  "commands": {
    "switch-pre": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "linux": "Ctrl+Shift+B"
      },
      "description": "切换上一个搜索引擎"
    },
    "switch-next": {
      "suggested_key": {
        "default": "Ctrl+Shift+N"
      },
      "description": "切换下一个搜索引擎"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}