たいつべ非公式検索

検索強化

// ==UserScript==
// @name         たいつべ非公式検索
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  検索強化
// @author       You
// @match        https://typing-tube.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=typing-tube.net
// @grant        none
// @license MIT
// ==/UserScript==
keyword.addEventListener('keydown',(e)=>{
    if(e.code == 'Enter' && e.ctrlKey){
        const newURL = `https://typing-tube.net/search?q=${e.target.value}&option=title&filter=&sec_min=&sec_max=`;
        window.open(newURL);
        //location.href = newURL;
    };
});