Examine source code of Quick Notes

Inspect and view changes in Quick Notes 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",
  "manifest_version": 2,
  "name": "Quick Notes",
  "short_name": "Quick Notes",
  "description": "Make and access notes quickly, at the launch of a new tab.",
  "version": "0.0.1.5",
  "browser_action": {
    "default_icon": "images/Quick_Note_Icon_48.png",
    "default_title": "Quick Notes"
  },
  "icons": {
    "16": "images/Quick_Note_Icon_16.png",
    "48": "images/Quick_Note_Icon_48.png",
    "128": "images/Quick_Note_Icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "html/newtab.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "background",
    "contextMenus",
    "storage",
    "clipboardRead",
    "clipboardWrite"
  ],
  "background": {
    "page": "html/background.html",
    "persistent": true
  }
}