Examine source code of Search Enhancement

Inspect and view changes in Search Enhancement source codes across current and past versions
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,
  "name": "Search Enhancement",
  "version": "2.0",
  "description": "Adds links to Reddit, Wikipedia, Twitter directlly on Google search page",
  "icons": {
    "48": "icons/search-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.google.*/*"
      ],
      "js": [
        "search.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{621ab849-298f-468a-b4b0-7fea6618717e}"
    }
  }
}