搜索拐杖

搜索拐杖

在Google,百度,必应等等搜索引擎间进行快捷切换,搜索关键词无需重输!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "搜索拐杖",
  "version": "3.26",
  "manifest_version": 2,
  "description": "在Google,百度,必应等等搜索引擎间进行快捷切换,搜索关键词无需重输!",
  "homepage_url": "http://xuhehuan.com/2272.html",
  "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"
  ],
  "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"
  },
  "commands": {
    "switch-pre": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "切换上一个搜索引擎"
    },
    "switch-next": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "切换下一个搜索引擎"
    }
  }
}