Google search open Wikipedia hotkey

Pressing w in google search results will automaticall opne the first Wikipidea link

  1. // ==UserScript==
  2. // @name Google search open Wikipedia hotkey
  3. // @description Pressing w in google search results will automaticall opne the first Wikipidea link
  4. // @match https://www.google.com/search*
  5. // @version 1.0.1
  6. // @license MIT
  7. // @author gosha305
  8. // @namespace https://greasyfork.org/en/users/1436613
  9. // ==/UserScript==
  10.  
  11. window.addEventListener('keydown', function(event){
  12. if (event.target.tagName == 'INPUT' ||
  13. event.target.tagName == 'SELECT' ||
  14. event.target.tagName == 'TEXTAREA' ||
  15. event.target.isContentEditable) {
  16. return;
  17. }
  18. if (event.key != "w" || event.ctrlKey || event.metaKey){
  19. return;
  20. }
  21. Array.from(document.querySelectorAll("#search a")).some((element) => {if (element.getAttribute("href").includes("wikipedia")) {window.location.href = element.getAttribute("href"); return true}});
  22. })