Google search open Wikipedia hotkey

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

// ==UserScript==
// @name        Google search open Wikipedia hotkey
// @description Pressing w in google search results will automaticall opne the first Wikipidea link
// @match       https://www.google.com/search*
// @version     1.0
// @license     MIT
// @author      gosha305
// @namespace   https://gf.qytechs.cn/en/users/1436613
// ==/UserScript==

window.addEventListener('keydown', function(event){
  if (event.target.tagName == 'INPUT' ||
        event.target.tagName == 'SELECT' ||
        event.target.tagName == 'TEXTAREA' ||
        event.target.isContentEditable) {
        return;
        }
  if (event.key != "w" && !event.ctrlKey){
    return;
  }
  Array.from(document.querySelectorAll("#search a")).some((element) => {if (element.getAttribute("href").includes("wikipedia")) {window.location.href = element.getAttribute("href"); return true}});
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址