Site Search Tool

Site Search Tool

A shortcut to performing a Google 'site:' search primarily to try and make other halfs life easier. Introduced nofollow link…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Site Search Tool",
  "options_page": "options.html",
  "short_name": "Site Search Tool",
  "manifest_version": 2,
  "version": "1.3",
  "background": {
    "scripts": [
      "jquery.js",
      "content_scripts.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "background",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "logo.png"
  ]
}