Greasy Fork is available in English.

scroll to top for a2b2

4/25/2021, 9:14:33 PM

// ==UserScript==
// @name        scroll to top for a2b2
// @namespace   Violentmonkey Scripts
// @match       https://a2b2.org/
// @grant       none
// @version     1.0
// @author      ezist
// @description 4/25/2021, 9:14:33 PM
// ==/UserScript==

let topLink = document.createElement('a')
topLink.textContent = "back to top"
topLink.style.position = "fixed"
topLink.style.right = "0"
topLink.style.bottom = "0"
topLink.style.padding = "8px"
topLink.addEventListener("click", () => void window.scrollTo(0, 0))
document.body.appendChild(topLink)