Press "CTRL-Z" (hotkey) to undo review
当前为
// ==UserScript==
// @name CTRL-Z for jpdb.io
// @namespace
// @version 0.1
// @description Press "CTRL-Z" (hotkey) to undo review
// @author DarkShadow44 (Fabian Maurer
// @match https://jpdb.io/review*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(document).bind('keypress', 'ctrl-z', undo_review);
function undo_review() {
window.history.back()
}
})();