Greasy Fork is available in English.
Fix PiaoTian keyboard browse on Firefox
当前为
// ==UserScript==
// @name PiaoTian
// @description Fix PiaoTian keyboard browse on Firefox
// @include https://www.piaotian.com/*
// @version 0.0.1.20180315133206
// @namespace http://diveintogreasemonkey.org/download/
// ==/UserScript==
document.onkeydown=function jumpPage2(e) {
if (e.keyCode==37) location=unsafeWindow.preview_page;
if (e.keyCode==39) location=unsafeWindow.next_page;
if (e.keyCode==13) location=unsafeWindow.index_page;
}