Examine source code of Kwik Note

Inspect and view changes in Kwik Note 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": "Kwik Note",
  "description": "Need a easy way to make notes? Kwik Note is a text box that follows you about the web, so you can make notes as you go!",
  "version": "1.0.2.2",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "jquery-ui.js",
        "create.js"
      ],
      "css": [
        "theme.css"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    "cross.png"
  ]
}