您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在百度搜索页面显示Google搜索按钮
// ==UserScript== // @name Baidu Helper // @namespace http://tampermonkey.net/ // @version 0.3 // @description 在百度搜索页面显示Google搜索按钮 // @author You // @match https://www.baidu.com/* // @grant none // @require http://code.jquery.com/jquery-1.11.0.min.js // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function() { 'use strict'; // Your code here... console.log('load') $('#form').width('760px') $('.s_btn_wr,#s_btn_wr').after('<input type="submit" id="google" value="Google一下" class="btn self-btn bg " style="margin-left:10px;width:100px;color:#fff;letter-spacing:1px;background:#3385ff;border-bottom:1px solid #2d78f4;outline:medium;*border-bottom:0;-webkit-appearance:none;-webkit-border-radius:0;border: 0;height:34px;">') $('#google').click(function(){ window.location.href='https://www.google.com.hk/search?q='+encodeURIComponent($('#kw').val()) }) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址