您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
在google_hack上使用谷歌镜像
// ==UserScript== // @name google_hack镜像助手 // @author wusuluren // @description 在google_hack上使用谷歌镜像 // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js // @match http://www.hi-ourlife.com/google_hack.html // @supportURL https://github.com/Wusuluren // @version 0.0.1 // @grant None // @namespace http://greasyfork.icu/users/194747 // ==/UserScript== (function () { 'use strict'; $(function(){ $("input[type='submit']").click(function() { getURL() var timerId = setInterval(function() { var content = document.getElementById("content").innerHTML if(content !== undefined) { document.getElementById("content").innerHTML = content.replace(/www.google.com/g, 'google.uulucky.com'); clearInterval(timerId) } }, 100) }) }) })();