Examine source code of Page Notes Sidebar

Inspect and view changes in Page Notes Sidebar 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": 3,
  "name": "Page Notes Sidebar",
  "description": "Add notes to web pages and access them from the sidebar when you revisit.",
  "version": "1.0.1",
  "icons": {
    "48": "logo48.png",
    "128": "logo.png"
  },
  "action": {
    "default_popup": "pages/side-panel.html",
    "default_icon": "logo.png"
  },
  "permissions": [
    "storage",
    "sidePanel",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "pages/options.html",
  "side_panel": {
    "default_path": "pages/side-panel.html",
    "default_title": "Notes",
    "default_icon": "logo.png"
  }
}