modern scroll

modern scroll

Takes scrolling to a whole new level

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "modern scroll",
  "description": "__MSG_description__",
  "homepage_url": "https://github.com/Christoph142/modern-scroll",
  "default_locale": "en",
  "version": "4.2.9",
  "minimum_chrome_version": "100",
  "icons": {
    "16": "images/contextmenu.png",
    "32": "images/[email protected]",
    "64": "images/icon.png",
    "128": "images/[email protected]"
  },
  "action": {
    "default_popup": "options/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "js": [
        "includes/modern_scroll.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options/options.html",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "offline_enabled": true,
  "manifest_version": 3
}