Examine source code of Synchronize Tab Scrolling

Inspect and view changes in Synchronize Tab Scrolling 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__",
  "default_locale": "en",
  "version": "2.3.2",
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icons/logo-16.png",
    "48": "icons/logo-48.png",
    "128": "icons/logo-128.png",
    "256": "icons/logo-256.png",
    "512": "icons/logo-512.png"
  },
  "background": {
    "service_worker": "background-script.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "minimum_chrome_version": "88",
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "icons/logo-16.png",
      "32": "icons/logo-32.png",
      "48": "icons/logo-48.png",
      "72": "icons/logo-72.png",
      "128": "icons/logo-128.png"
    },
    "default_popup": "index.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}