Examine source code of Authenticator Desktop

Inspect and view changes in Authenticator Desktop 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": "Authenticator Desktop",
  "version": "1.0.0",
  "description": "Generate offline MFA codes on PC—auto-fill & secure mobile authenticator alternative.",
  "permissions": [
    "windows",
    "activeTab",
    "tabs",
    "storage",
    "downloads",
    "clipboardRead",
    "clipboardWrite"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/logo/icon-16.png",
      "48": "assets/logo/icon-48.png",
      "128": "assets/logo/icon-128.png"
    }
  },
  "icons": {
    "16": "assets/logo/icon-16.png",
    "48": "assets/logo/icon-48.png",
    "128": "assets/logo/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "injected/injected.css"
      ],
      "js": [
        "injected/injected.js",
        "injected/toast.js",
        "assets/js/jsQR.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/style.css",
        "assets/js/jquery-3.7.1.min.js",
        "assets/js/jsSHA.js",
        "totp.worker.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http://localhost:* http://127.0.0.1:*; object-src 'self'; style-src 'self' 'unsafe-inline' https://cdn.jsdelivr.net; font-src 'self' https://cdn.jsdelivr.net;"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}