Examine source code of Chrome Note Keeper

Inspect and view changes in Chrome Note Keeper 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": "Chrome Note Keeper",
  "version": "1.0",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/notekeeper16.png",
      "32": "icons/notekeeper32.png",
      "64": "icons/notekeeper64.png",
      "128": "icons/notekeeper128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "options_page": "options.html",
  "description": "Chrome Note Keeper: keep notes on specific websites pages.",
  "icons": {
    "16": "icons/notekeeper16.png",
    "32": "icons/notekeeper32.png",
    "64": "icons/notekeeper64.png",
    "128": "icons/notekeeper128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}