您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
follow the scroll little button !
// ==UserScript== // @name maliki.rebuild // @namespace DEV // @include http://maliki.com/strips/* // @description follow the scroll little button ! // @grant none // @version 1.0 // ==/UserScript== var elements = document.getElementsByTagName("a"); var next_button_array = []; var prev_button_array = []; for (var i = 0; i < elements.length; ++i) { var item = elements[i]; if(item.className == "linkToContent linkNextContent") next_button_array.push(item); if(item.className == "linkToContent linkPrevContent") prev_button_array.push(item); } next_button_array[0].style.position = "fixed"; next_button_array[0].style.top = "400px"; next_button_array[1].style.visibility = "hidden"; prev_button_array[0].style.position = "fixed"; prev_button_array[0].style.top = "400px"; prev_button_array[1].style.visibility = "hidden";