百度一下,你就知道

百度一下,你就知道

百度一下 ,你就知道 Chrome插件,选中文字后可在网页上点击鼠标右键直接用百度搜索(若无选中文字点击鼠标右键则直接打开百度首页,点击地址栏右侧的百度图标也可直接打开百度首页)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "百度一下,你就知道",
  "manifest_version": 2,
  "version": "1.7",
  "description": "百度一下 ,你就知道 Chrome插件,选中文字后可在网页上点击鼠标右键直接用百度搜索(若无选中文字点击鼠标右键则直接打开百度首页,点击地址栏右侧的百度图标也可直接打开百度首页)",
  "browser_action": {
    "default_icon": "images/16.png"
  },
  "options_page": "options.html",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}