Examine source code of What Font - font finder

Inspect and view changes in What Font - font finder 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,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.4",
  "permissions": [
    "tabs",
    "activeTab",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/serviceWorker.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "48": "/logos/48.png",
    "64": "/logos/64.png",
    "128": "/logos/128.png"
  },
  "action": {
    "default_icon": "/logos/128.png"
  }
}