КАК ПОМЕНЯТЬ НАЗНАЧЕНИЕ КЛАВИШ В ИО ИГРЕ TAMPERKONKEY
// ==UserScript==
// @name глар ио smena bukvi h na q
// @namespace тамперконкей
// @version 1.0
// @description Replace H with Q
// @author UVAZAU
// @match https: глар ио
// @grant none
// ==/UserScript==
(function() {
const H = document.querySelector('h');
if (H) {
H.textContent = 'Q';
}
})();