油猴脚本写一个就可以,我自己就给所有网页增加了一个 top 。
代码:
(function() {
'use strict';
var parent = document.createElement('div');
var top = document.createElement('div');
top.append('Top')
top.onclick = function() {
window.scrollTo(0, 0)
}
top.className = 'go-top'
top.style.position = 'fixed';
top.style.bottom = '20px';
top.style.right = '20px';
top.style.cursor = 'pointer';
top.style.zIndex = '999';
parent.append(top)
document.body.append(parent);
})();
https://greasyfork.org/zh-CN/scripts/389939-top