Кнопка "вверх" для форума

Добавляет кнопку "вверх" внизу страниц форума

目前為 2015-04-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name           Кнопка "вверх" для форума
// @namespace      virtonomica
// @version        1.0
// @include        http://*virtonomic*.*/*/forum/*
// @description Добавляет кнопку "вверх" внизу страниц форума
// @grant       none
// ==/UserScript==

var run = function() {

	var win = (typeof(unsafeWindow) != 'undefined' ? unsafeWindow : top.window);
	$ = win.$;
	//alert("begin");
	var head = $("body");
	head.append("<div style=\"font-size: 50pt; position: fixed; bottom: 10px; right: 10px;\" onclick=\"$('html, body').animate({ scrollTop: 0 }, 'fast');\">&#8657;</div>");
	//alert("end");
}

if(window.top == window) {
    var script = document.createElement("script");
    script.textContent = '(' + run.toString() + ')();';
    document.documentElement.appendChild(script);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址