Skip to content

Instantly share code, notes, and snippets.

@ValorLin
Last active August 29, 2015 14:22
Show Gist options
  • Save ValorLin/b54efbdd1dc768943ddb to your computer and use it in GitHub Desktop.
Save ValorLin/b54efbdd1dc768943ddb to your computer and use it in GitHub Desktop.
【油猴脚本】去除 google 搜索重定向
// ==UserScript==
// @name 去除 google 搜索重定向
// @namespace http://doctype-html.com
// @version 0.1
// @description 去除 google 搜索重定向,提高访问速度
// @author Weilao
// @include *//www.google.com/*
// @grant none
// ==/UserScript==
location.href = "javascript:void(function(){" +
" Object.defineProperty(window, 'rwt', { " +
" value: function(a) { return a; }, " +
" writable: false, " +
" configurable: false, " +
" enumerable: false " +
" }); " +
"})(); ";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment