Keep Twitter scroll position

Keep Twitter scroll position

Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Keep Twitter scroll position",
  "description": "Twitter annoyingly keeps losing your scroll position when browsing reply threads. This extension fixes that.",
  "version": "1.2",
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://twitter.com/*"
      ]
    }
  ]
}