Advertisement
Trambambaj

linki klawisze test

Sep 2nd, 2021 (edited)
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       menu przez kb
  3. // @version    1.2
  4. // @include    *hegira.com.pl/*
  5. // @copyright  free
  6. // ==/UserScript==
  7. "use strict";
  8. const zakladki = [
  9.   "Specjaliści",
  10.   "Polityka",
  11.   "Stocznia Orbitalna",
  12.   "Sterowanie flotą",
  13. ];
  14. const klawisze = ["q", "w", "e", "r"];
  15. const menu = function (e) {
  16.   const keyInd = klawisze.indexOf(e.key);
  17.   if (keyInd !== -1) {
  18.     window.location.href = $(`li:contains(${zakladki[keyInd]})`).children(
  19.       "a"
  20.     )[0].href;
  21.   }
  22. };
  23. document.addEventListener("keyup", menu);
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement