Scroll To Top

Scroll To Top

Scroll to top and vice versa in a window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Scroll To Top",
  "version": "5.1",
  "description": "Scroll to top and vice versa in a window.",
  "icons": {
    "16": "icons/pratikabu-stt-16.png",
    "48": "icons/pratikabu-stt-48-1.png",
    "128": "icons/pratikabu-stt-128.png"
  },
  "author": "Pratik Soni",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "pratikabu-stt.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "thirdparty/jquery-3.7.1.min.js",
        "pratikabu-stt.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "homepage_url": "https://github.com/pratikabu/scrolltotop",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {}
}