Restore Scrollbar Position for Mac

Restore Scrollbar Position for Mac

Restores the last scrollbar position when dragging the scrollbar when your mouse leaves the scrollbar's buffer zone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "author": "Terry",
  "version": "0.1.1",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "48": "icon_48.png",
    "96": "icon_96.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}