您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows you to go to the previous and next user.
// ==UserScript== // @name Previous and Next User IDs // @author Joe Elite // @version 1.0 // @description Allows you to go to the previous and next user. // @match https://www.brick-hill.com/user/* // @grant none // @namespace https://gf.qytechs.cn/users/1037699 // ==/UserScript== var prevButton = $('<button>').html('<i class="fa fa-arrow-left"></i> Previous').addClass('btn btn-primary').css({ 'position': 'absolute', 'bottom': '515px', 'left': '3px', 'z-index': '9999', 'background-color': 'transparent', 'color': 'white', 'border': 'none', 'min-width': '100px', 'outline': 'none' }); var nextButton = $('<button>').html('Next <i class="fa fa-arrow-right"></i>').addClass('btn btn-primary').css({ 'position': 'absolute', 'bottom': '515px', 'right': '3px', 'z-index': '9999', 'background-color': 'transparent', 'color': 'white', 'border': 'none', 'min-width': '100px', 'outline': 'none' }); $('.card .content.text-center.bold.medium-text.relative.ellipsis').append(prevButton, nextButton); prevButton.on('click', function() { var current = parseInt(window.location.href.match(/\/user\/(\d+)/)[1]); window.location.href = 'https://www.brick-hill.com/user/' + (current - 1); }); nextButton.on('click', function() { var current = parseInt(window.location.href.match(/\/user\/(\d+)/)[1]); window.location.href = 'https://www.brick-hill.com/user/' + (current + 1); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址