谷歌搜索助手

谷歌搜索助手

谷歌搜索增强与优化工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "谷歌搜索助手",
  "version": "4.8",
  "manifest_version": 2,
  "description": "谷歌搜索增强与优化工具",
  "permissions": [
    "webRequest",
    "*://*/",
    "notifications",
    "tabs"
  ],
  "background": {
    "scripts": [
      "/scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://www.google.com/blank.html",
        "*://www.google.com.hk/blank.html",
        "*://*/blank.html"
      ],
      "js": [
        "/scripts/sizzle.js",
        "/scripts/searchResultOptimizerImageFrame.js"
      ],
      "all_frames": true
    }
  ]
}