Examine source code of Gmail shortcut

Inspect and view changes in Gmail shortcut 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": "Gmail shortcut",
  "version": "1.0",
  "description": "Adds a direct shortcut to Gmail to be opened in an active tab.",
  "icons": {
    "48": "logo.png"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "Gmail"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}