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://greasyfork.org/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}});
})