Google Redirect Bypasser

Automatically opens the link after the text notice "The previous page is sending you to https://" ...

安装此脚本?
作者推荐脚本

您可能也喜欢Default Google Translator Languages

安装此脚本
  1. // ==UserScript==
  2. // @name Google Redirect Bypasser
  3. // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
  4. // @version 1
  5. // @description Automatically opens the link after the text notice "The previous page is sending you to https://" ...
  6. // @author hacker09
  7. // @match https://www.google.com/url?*
  8. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://www.google.com&size=64
  9. // @grant none
  10. // @noframes
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. document.querySelector("a").click(); //Open the link
  15. })();