Greasy Fork镜像 支持简体中文。

Google I'm Feeling Lucky Redirect

Immediately redirects when google prompts 'redirection notice'. Used to circumvent google pestering you when querying with I'm Feeling Lucky feature.

  1. // ==UserScript==
  2. // @name Google I'm Feeling Lucky Redirect
  3. // @namespace https://snomiao.com/
  4. // @version 0.3.0
  5. // @description Immediately redirects when google prompts 'redirection notice'. Used to circumvent google pestering you when querying with I'm Feeling Lucky feature.
  6. // @author snomiao
  7. // @include https://www.google.com/url?*
  8. // @run-at document-start
  9. // @github https://github.com/snomiao/userscript.js/blob/master/GoogleImFeelingLuckyRedirect.user.js
  10. // ==/UserScript==
  11.  
  12. // ref: [Workaround for Google I'm Feeling Lucky Redirect]( https://gf.qytechs.cn/en/scripts/390770-workaround-for-google-i-m-feeling-lucky-redirect )
  13.  
  14. const url = Object.fromEntries(
  15. location.search
  16. .slice(1)
  17. .split('&')
  18. .map((e) => e.split('='))
  19. ).q;
  20. if (url) location = url;

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址