Examine source code of Tab Customizer

Inspect and view changes in Tab Customizer 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
{
  "version": "1.1.0",
  "manifest_version": 3,
  "name": "Tab Customizer",
  "description": "Change the icon and title of any tab!",
  "action": {
    "default_popup": "./src/index.html",
    "default_title": "Tab Customizer"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "tabs",
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "background": {
    "service_worker": "./src/background.js"
  },
  "icons": {
    "16": "./public/icon.png",
    "48": "./public/icon.png",
    "128": "./public/icon.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}