Examine source code of Sidebar for Gmail™

Inspect and view changes in Sidebar for Gmail™ 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
{
  "version": "0.1.4resigned1",
  "manifest_version": 2,
  "name": "Sidebar for Gmail™",
  "short_name": "gmailsidebar",
  "background": {
    "page": "lib/chrome/background.html"
  },
  "applications": {
    "gecko": {
      "strict_min_version": "54.0",
      "id": "jid1-t8qTmoJIj4HmCs@jetpack"
    }
  },
  "description": "Easy Access to Gmail (mobile view) via Sidebar UI",
  "options_ui": {
    "chrome_style": true,
    "page": "data/options/options.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "sidebar_action": {
    "default_icon": "data/icons/16.png",
    "default_title": "Sidebar for Gmail™",
    "default_panel": "data/popup/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "css": [
        "data/popup/gmail.css"
      ],
      "matches": [
        "*://*.gstatic.com/*",
        "*://gstatic.com/*",
        "*://*.apis.google.com/*",
        "*://apis.google.com/*",
        "*://*.mail.google.com/*",
        "*://mail.google.com/*",
        "*://*.accounts.google.com/*",
        "*://accounts.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}