Baidu Reset page automatic jump script

Source: Internet
Author: User

As we all know, Baidu does not allow other search engines to directly access all of its sites. After a lot of clicks, it writes this automatic jump script.

It turns out that not only the search engine, but also the links of other websites have been done, nnd, cursing Baidu.

Usage: Use the xxxmonkey plug-in to create a script. copy and paste the script and save it.

// = UserScript ==/@ name autoRedirectForBaidu // @ namespace http://jinzhao.cnblogs.com/// @ version 0.1 // @ description auto redirect of baidu // @ match http://www.baidu.com/search/ressafe.html#// @ copyright 2013 +, jinzhao // =/UserScript = function request (paras) {var url = location. href; var paraString = url. substring (url. indexOf ("? ") + 1, url. length ). split ("&"); var paraObj = {} for (I = 0; j = paraString [I]; I ++) {paraObj [j. substring (0, j. indexOf ("= ")). toLowerCase ()] = j. substring (j. indexOf ("=") + 1, j. length);} var returnValue = paraObj [paras. toLowerCase ()]; if (typeof (returnValue) = "undefined") {return ";} else {return returnValue ;}} // The following is the application code var theurl = request ("url"); if (theurl! = '') {Window. location. href = theurl}

 

Http://baike.baidu.com/view/39377.htm

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.