Examine source code of Technical Document Browser Extension

Inspect and view changes in Technical Document Browser Extension 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
{
  "manifest_version": 3,
  "name": "Technical Document Browser Extension",
  "version": "5.18",
  "description": "This is a tool designed for the Technical Document Standard Markdown Solution.",
  "background": {
    "service_worker": "./background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*.md"
      ],
      "js": [
        "./content.js",
        "./library/highlight/highlight.min.js",
        "./library/FileSaver/FileSaver.min.js"
      ],
      "css": [
        "./library/highlight/one-light.min.css"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "24": "icon/24.png",
      "32": "icon/32.png",
      "48": "icon/48.png",
      "64": "icon/64.png",
      "96": "icon/96.png",
      "128": "icon/128.png",
      "196": "icon/196.png",
      "256": "icon/256.png"
    },
    "default_popup": "./popup.html"
  },
  "icons": {
    "24": "icon/24.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "64": "icon/64.png",
    "96": "icon/96.png",
    "128": "icon/128.png",
    "196": "icon/196.png",
    "256": "icon/256.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "./library/markdown-css/*.css",
        "./library/technical-document/*.css",
        "./library/technical-document/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "file://*.md"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}