Examine source code of Google Voice (Pin Tab)

Inspect and view changes in Google Voice (Pin Tab) 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
{
  "name": "Google Voice (Pin Tab)",
  "description": "Switch to Google Voice (Pin Tab) with a single click or a Hot Key (Alt+V)!",
  "version": "1.1",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Switch to Google Voice (Pin Tab)"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+V"
      },
      "description": "Switch to Google Voice (Pin Tab)"
    }
  }
}