ShowGoogleSearchTools

ShowGoogleSearchTools

Googleの「検索ツール」をデフォルトで表示します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ShowGoogleSearchTools",
  "version": "1.0.2",
  "manifest_version": 2,
  "short_name": "ShowGTools",
  "description": "Googleの「検索ツール」をデフォルトで表示します。",
  "content_scripts": [
    {
      "matches": [
        "https://*.google.co.jp/*",
        "https://*.google.co.jp/*",
        "https://*.google.com/*",
        "http://*.google.co.jp/*",
        "http://*.google.com/*"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_icon": "icon.png"
  }
}