Scroll to Top

Scroll to Top

Quickly scroll to top or bottom of the page and then return to the previous position.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Scroll to Top",
  "description": "__MSG_app_description__",
  "version": "1.18.0",
  "default_locale": "en",
  "web_accessible_resources": [
    {
      "resources": [
        "sound.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Scroll to Top"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "smooth-scroll.min.js",
        "hf.js",
        "content_script.js"
      ],
      "css": [
        "content_script.css"
      ]
    }
  ],
  "commands": {
    "to_top": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "__MSG_to_top_hotkey__"
    },
    "to_bottom": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "__MSG_to_bottom_hotkey__"
    },
    "return": {
      "suggested_key": {
        "default": "Alt+U"
      },
      "description": "__MSG_return_hotkey__"
    },
    "remember_position": {
      "suggested_key": {
        "default": "Alt+I"
      },
      "description": "__MSG_remember_position_hotkey__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}