Examine source code of Tab Dock

Inspect and view changes in Tab Dock 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": "Tab Dock",
  "version": "1.0",
  "description": "Display a dock with all tabs grouped by domain.",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "favicon"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "dock-styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*",
        "dock-styles.css",
        "images/default_favicon.png",
        "images/icons8-close.svg",
        "main.js",
        "Dock/Dock.js",
        "Dock/DockItem.js",
        "Dock/TabItem.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}