快捷键处理函数
Ovu skriptu ne treba izravno instalirati. To je biblioteka za druge skripte koje se uključuju u meta direktivu // @require https://update.greatest.deepsurf.us/scripts/375077/670576/handleKey.js
var handleKey = function (a, b, c) {
var d = allElement.filter(function (t) {
if (t.hasAttribute && t.hasAttribute('accesskey') && t.getAttribute('accesskey') == a ||
t.classList.contains(b)) {
if (t.offsetParent !== null) {
if (!t.classList.contains(b)) {
t.classList.add(b);
t.removeAttribute('accesskey', '*');
}
c.push(allElement.indexOf(t));
return t;
}
}
});
return d;
}