Examine source code of As Noted

Inspect and view changes in As Noted 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": "As Noted",
  "version": "1.5.0.1",
  "manifest_version": 2,
  "description": "A simple and powerful personal note taking environment.",
  "background": {
    "page": "views/background.html"
  },
  "icons": {
    "16": "asnoted-extension16.png",
    "48": "asnoted-extension48.png",
    "128": "asnoted-extension128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://kindle.amazon.com/your_highlights"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/amazon-content.js"
      ]
    }
  ],
  "permissions": [
    "https://maps.googleapis.com/*",
    "https://kindle.amazon.com/*",
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "fontSettings"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.googleapis.com https://maps.gstatic.com; object-src 'self'",
  "browser_action": {
    "default_title": "As Noted",
    "default_icon": {
      "19": "asnoted-extension19.png",
      "38": "asnoted-extension38.png"
    }
  },
  "default_locale": "en",
  "web_accessible_resources": [
    "views/dropbox-oauth.html"
  ]
}