Examine source code of markerNote - web, PDF highlighter & notes

Inspect and view changes in markerNote - web, PDF highlighter & 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": 3,
  "minimum_chrome_version": "123",
  "offline_enabled": true,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "short_name": "markerNote",
  "description": "__MSG_extDescription__",
  "version": "0.0.35",
  "author": "NoteRail",
  "icons": {
    "16": "icon.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_title": "Open markerNote (Alt+M)",
    "default_popup": "popup/index.html"
  },
  "options_page": "options/index.html",
  "side_panel": {
    "default_path": "panel/index.html"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+M",
        "windows": "Alt+M",
        "mac": "Alt+M",
        "linux": "Alt+M"
      }
    },
    "colorpot_popup": {
      "suggested_key": {
        "default": "Alt+H",
        "windows": "Alt+H",
        "mac": "Alt+H",
        "linux": "Alt+H"
      },
      "description": "Highlight text"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/colorpot/highlighter-DNSESW2H.css",
        "scripts/colorpot/highlight-colorpot.js",
        "scripts/colorpot/comment-WWJ465NJ.css",
        "scripts/serializer/markdown/enums.js",
        "scripts/serializer/markdown/mark-json-serializer.js",
        "scripts/serializer/markdown/mark-txt-serializer.js",
        "scripts/serializer/notion/notion-serializer.js",
        "scripts/youtube/yt-transcript-ZZZ6COS6.css",
        "scripts/youtube/yt-api-request-LHFVH6YZ.js",
        "scripts/youtube/yt-caption-highlighter-HVB56IQ2.js",
        "scripts/auto-popup.js",
        "assets/pdf-proxy.html",
        "icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "iframe_rule",
        "enabled": true,
        "path": "iframe_request.json"
      }
    ]
  },
  "externally_connectable": {
    "matches": [
      "https://cloud.markernote.noterail.co/*",
      "https://pdfmarker.noterail.co/*"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "declarativeNetRequestWithHostAccess",
    "scripting",
    "sidePanel",
    "storage"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ]
}