window.onload = function () { const adminLinkElement = document.querySelector(".article-detail .metadata a.admin-link"); if (adminLinkElement === undefined || adminLinkElement === null) { return; } const adminLocation = adminLinkElement.href; document.addEventListener("keydown", event => { if (event.code === "KeyE") { window.location = adminLocation; } }) }