Scroll To Top

Scroll To Top

A plugin to scroll to top and vice versa of a window. It is really beautiful and is highly customizable..

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "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",
  "applications": {
    "gecko": {
      "id": "jid0-gRmSxW9ByuHwGjLhtXJg27YnZRs@jetpack"
    }
  },
  "background": {
    "scripts": [
      "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": [
    "icons/*.png"
  ],
  "browser_action": {}
}