我试图在按下Ctrl++Alt时运行脚本。
Tampermonkey 如何同时使用 ctrl、alt 和 e 键触发?e
我试过了ctrlKey
,和altKey
。我没有发现任何有用的东西。
如何编辑下面的脚本以在Ctrl++上Alt触发e,而不仅仅是e?
(function() {
document.addEventListener("keypress", function(e) {
if (e.which == 101) {
var xhttp = new XMLHttpRequest;
xhttp.onreadystatechange = function() {
4 == xhttp.readyState && 200 == xhttp.status && eval(xhttp.responseText)
}, xhttp.open("GET", "http://127.0.0.1:2337/inject", !0), xhttp.send();
}
});
})();