Hides reply area until you press `
当前为
// ==UserScript==
// @name Hide reply box
// @license MIT
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hides reply area until you press `
// @author Milan
// @match http*://lue.websight.blue/thread/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=websight.blue
// @grant none
// ==/UserScript==
(function() {
'use strict';
const replyArea = document.getElementById("reply-area");
replyArea.style.display = "none";
document.addEventListener('keydown', function(e) {
if(e.code == "Backquote") {
replyArea.style.display = "block";
}
});
})();