BetterGoogleToolbar

BetterGoogleToolbar

更加優化的Google工具列。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.3.1",
  "default_locale": "zh_TW",
  "minimum_chrome_version": "26",
  "manifest_version": 2,
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "include_globs": [
        "http://*.google.*/*",
        "https://*.google.*/*",
        "http://*.google.*.*/*",
        "https://*.google.*.*/*"
      ],
      "js": [
        "content_scripts.js"
      ],
      "css": [
        "mystyles.css"
      ],
      "run_at": "document_start"
    }
  ]
}