Examine source code of Translate selected text on Google Translate

Inspect and view changes in Translate selected text on Google Translate 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": "Translate selected text on Google Translate",
  "description": "Opens new tab with Google Translate for selected text. Currently only English to Polish, but will expand soon.",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "icons": {
    "48": "GoogleTranslate.svg",
    "96": "GoogleTranslate.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}