// ==UserScript== // @name 双搜索引擎 // @namespace Violentmonkey Scripts // @include https://www.google.com* // @match https://www.baidu.com/s // @match https://www.baidu.com/ // @grant none // @version 1.3 // @author - // @description 2021/1/4 上午10:33:27 // @downloadURL none // ==/UserScript== window.onload = () => { if ( /www\.google\.com/.test(window.location.hostname)) { const box = document.querySelector("div.RNNXgb[jsname='RNNXgb']"); const textarea = document.querySelector("textarea[aria-label='搜索']"); const btn = document.createElement('button'); btn.className = 'Tg7LZd' btn.ariaLabel = '百度搜索' btn.onclick = (e) => { e.stopPropagation() // localtion.assign(`https://www.baidu.com/s?wd=${textarea.value}`) // window.location.href=`https://www.baidu.com/s?wd=${textarea.value}` window.open(`https://www.baidu.com/s?wd=${textarea.value}`) } // btn.href="https://www.baidu.com" btn.innerHTML = `
` box.appendChild(btn) } else if (window.location.hostname === "www.baidu.com") { const su = document.getElementById('su') su.style = 'border-radius: 0' const input = document.createElement('input') const kw = document.getElementById('kw') input.style = ` vertical-align:top; cursor: pointer; width: 60px; height: 100%; line-height: 40px; line-height: 40px\\9; background-color: #4e6ef2; border-radius: 0 10px 10px 0; font-size: 17px; box-shadow: none; font-weight: 400; border: 0; outline: 0; letter-spacing: normal; color: #ffffff; ` input.type = 'submit' input.value = '谷歌' input.onclick = () => { window.location.href=`https://www.google.com/search?q=${kw.value}` // window.open(`https://www.google.com/search?q=${kw.value}`) } const box = su.parentNode box.style = `width: max-content;` const form = document.getElementById('form') form.style.width = 'max-content' box.appendChild(input) } }