Examine source code of tldr pages

Inspect and view changes in tldr pages 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
{
  "name": "tldr pages",
  "version": "1.1.1",
  "description": "Collaborative cheatsheets for console commands (tldr project) now in your Browser!",
  "author": "Raúl Piracés",
  "homepage_url": "https://tldr.sh",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "node_modules/marked/marked.min.js",
        "node_modules/dompurify/dist/purify.min.js",
        "main.js"
      ],
      "css": [
        "styles/main.min.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus"
  ],
  "action": {
    "default_icon": {
      "16": "/icons/icon16.png",
      "32": "/icons/icon32.png",
      "48": "/icons/icon48.png",
      "128": "/icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/icons/icon16.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "update_URL": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}