Examine source code of Translate Text

Inspect and view changes in Translate Text 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 Text",
  "description": "Translate any text selection with your right click menu.",
  "version": "0.1",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "browser_action": {
    "default_icon": "images/icon-48.png",
    "default_title": "Translate Text",
    "default_popup": "web/popup.html"
  },
  "options_ui": {
    "page": "web/options.html",
    "browser_style": true
  }
}