您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows the usage of ← and → arrow keys to navigate between pages.
// ==UserScript== // @name RARBG Pagination Arrows // @namespace DaBaldEagul // @description Allows the usage of ← and → arrow keys to navigate between pages. // @grant none // @license MIT // @match *://rarbg.to/torrents.php* // @match *://rarbg2018.org/torrents.php* // @match *://rarbg2019.org/torrents.php* // @match *://rarbg2020.org/torrents.php* // @match *://rarbg2021.org/torrents.php* // @match *://rarbgaccess.org/torrents.php* // @match *://rarbgaccessed.org/torrents.php* // @match *://rarbgcdn.org/torrents.php* // @match *://rarbgcore.org/torrents.php* // @match *://rarbgdata.org/torrents.php* // @match *://rarbgenter.org/torrents.php* // @match *://rarbgget.org/torrents.php* // @match *://rarbggo.org/torrents.php* // @match *://rarbgindex.org/torrents.php* // @match *://rarbgmirror.org/torrents.php* // @match *://rarbgmirrored.org/torrents.php* // @match *://rarbgp2p.org/torrents.php* // @match *://rarbgproxied.org/torrents.php* // @match *://rarbgproxies.org/torrents.php* // @match *://rarbgproxy.org/torrents.php* // @match *://rarbgprx.org/torrents.php* // @match *://rarbgto.org/torrents.php* // @match *://rarbgtor.org/torrents.php* // @match *://rarbgtorrents.org/torrents.php* // @match *://rarbgunblock.org/torrents.php* // @match *://rarbgunblocked.org/torrents.php* // @match *://rarbgway.org/torrents.php* // @match *://rarbgweb.org/torrents.php* // @match *://proxyrarbg.org/torrents.php* // @match *://unblockedrarbg.org/torrents.php* // @match *://rarbg.com/torrents.php* // @match *://rarbgmirror.com/torrents.php* // @match *://rarbgproxy.com/torrents.php* // @match *://rarbgunblock.com/torrents.php* // @version 0.0.1.20220123201843 // ==/UserScript== function getPreviousLink() { for(i=0;i<document.links.length;i++){ if(document.links[i].title == 'previous page') { return document.links[i] } } } function getNextLink() { for(i=0;i<document.links.length;i++){ if(document.links[i].title == 'next page') { return document.links[i] } } } document.onkeydown = checkKey; var prevlink = false; var nextlink = false; if(getPreviousLink()) { prevlink = getPreviousLink().href; } if(getNextLink()) { nextlink = getNextLink().href; } function checkKey(e) { e = e || window.event; if (document.activeElement.toString().search(/(Input|TextArea)/) < 0) { if (e.keyCode == '37') { if (prevlink) location.href = prevlink; } else if (e.keyCode == '39') { if (nextlink) location.href = nextlink; } } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址