Examine source code of Try Google

Inspect and view changes in Try Google 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": "Try Google",
  "version": "1.2",
  "description": "Use search terms from current page for a Google search.",
  "homepage_url": "https://github.com/Jesperbk/TryGoogle",
  "icons": {
    "48": "icons/icon-dark.svg",
    "96": "icons/icon-dark.svg"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/try-google.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon-dark.svg",
    "default_title": "Try Google",
    "theme_icons": [
      {
        "light": "icons/icon-light.svg",
        "dark": "icons/icon-dark.svg",
        "size": 16
      },
      {
        "light": "icons/icon-light.svg",
        "dark": "icons/icon-dark.svg",
        "size": 32
      }
    ]
  }
}