您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
remaps various nodeBB keyboard shortcuts to simple keypresses
// ==UserScript== // @name nodeBB remap shortcuts // @namespace https://hoover.gplrank.de/ // @description remaps various nodeBB keyboard shortcuts to simple keypresses // @description author: hoover // @description You'll need to replace "hoover" with your forum username for the "chat" link to work below. // @include http*://forum.falcon-bms.com/* // // @version 0.0.2.20211018140000 // ==/UserScript== function findTopicLink() { var anchors = document.getElementsByTagName('a'); var href="/unread"; for (var i = 0 ; i < anchors.length ; i++) { href = anchors[i].getAttribute('href'); if (href) { if(href.match(/topic/)) { return(href); break ; } } } } var key_map = { "N" : "/unread", "R": "/recent", "P": "/popular", "H": "/", "C": "/user/hoover/chats", "S": "/search", "M": "/notifications", "G": findTopicLink() } // stolen shamelessly from userscript.org's facebook key navigation // Thanks to Droll Troll function OnKeyUp(e) { if (String.fromCharCode(e.keyCode) in key_map && (typeof e.target.type == "undefined" || (e.target.type != "text" && e.target.type != "textarea")) && !e.altKey && !e.ctrlKey && e.keyCode <= 90) { window.location.replace(key_map[String.fromCharCode(e.keyCode)]) } } window.addEventListener("keyup",function(event) { OnKeyUp(event); },false)