Examine source code of Re:format Gmail inline replies

Inspect and view changes in Re:format Gmail inline replies 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Re:format Gmail inline replies",
  "description": "Reply to long emails point-by-point.  Highlight text, press a button, and the quote shows up in your compose window.",
  "version": "0.0.12",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://mail.google.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "button_q.png"
  ],
  "icons": {
    "128": "icons_128_resized_from_website.png"
  },
  "commands": {
    "QUOTE": {
      "suggested_key": {
        "default": "Ctrl+Shift+B",
        "linux": "Ctrl+Shift+B",
        "mac": "Ctrl+Shift+B",
        "windows": "Ctrl+Shift+B"
      },
      "description": "Quote by keyboard."
    }
  },
  "manifest_version": 2
}