Next/Forward Page for EPVP

Press Left/Right arrow key for previous/next page

当前为 2015-09-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         Next/Forward Page for EPVP
// @namespace    http://your.homepage/
// @version      0.1
// @description  Press Left/Right arrow key for previous/next page
// @author       .VoiD'
// @match        http://www.elitepvpers.com/forum/*/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

var next = $('a[rel=\'next\']')[0],
    prev = $('a[rel=\'prev\']')[0];

$(window).keydown(function (e) {
    if ( e.which === 39 ) {
        window.location.href = next.href;        
    } else if ( e.which === 37 ) {
        window.location.href = prev.href; 
    }
});

QingJ © 2025

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