// ==UserScript== // @name Zhihu Laji Search // @namespace https://github.com/cbozi/zhihu-laji-search // @author cbozi // @version 0.1 // @description Replace zhihu search button with google search // @match *://zhihu.com/* // @match *://*.zhihu.com/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; var baseURL = "https://www.google.com/search"; var site = " site:zhihu.com"; // Your code here... var form = document.getElementById("zh-top-search-form"); form.onsubmit = function(){ var form = document.getElementById("zh-top-search-form"); form.type.removeAttribute("name"); form.setAttribute("action", baseURL); form.q.value += site; }; })();