Examine source code of Discord Exporter - Backup discord chat logs

Inspect and view changes in Discord Exporter - Backup discord chat logs 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": "__MSG_extName__",
  "homepage_url": "https://discordexporter.echobot.dev",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "identity",
    "downloads"
  ],
  "host_permissions": [
    "https://discord.com/*",
    "*://*.echobot.dev/*"
  ],
  "oauth2": {
    "client_id": "224039609085-gonm3f2kiqj5hil08q1k3bcks7c3kdq9.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://discord.com/*"
      ],
      "js": [
        "content-script-start.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "https://discord.com/*"
      ],
      "js": [
        "libs/jquery-3.6.0.min.js",
        "content-script.js"
      ],
      "css": [
        "css/content-script.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "*://*.echobot.dev/auth/success/discordexporter*"
      ],
      "js": [
        "auth.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "version": "1.1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}