Google Search Plus

Add a link to your favorite search service, such as Amazon or Twitter to google's search results.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "1.0.6",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "G-Search-Plus@sienori"
    }
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "icons": {
    "64": "images/64.png",
    "512": "images/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/search*"
      ],
      "js": [
        "G-Search-Plus.js"
      ]
    }
  ]
}