Greasy Fork is available in English.

Google Redirect Notice Bypasser

Automatically clicks the specified link on Google's redirect notice page because the page is so annoying.

Versión del día 31/03/2024. Echa un vistazo a la versión más reciente.

  1. // ==UserScript==
  2. // @name Google Redirect Notice Bypasser
  3. // @namespace http://greasyfork.org/
  4. // @version 1.0
  5. // @description Automatically clicks the specified link on Google's redirect notice page because the page is so annoying.
  6. // @author Liam
  7. // @match https://www.google.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. console.log('Script started.');
  16.  
  17. console.log('Checking if the page contains the redirect notice...');
  18. if(document.querySelector('.mymGo > .aXgaGb > font > b')) {
  19. console.log('Redirect notice found.');
  20.  
  21. var redirectLink = document.querySelector('.fTk7vd a');
  22. if(redirectLink) {
  23. console.log('Redirect link found. Clicking...');
  24. redirectLink.click();
  25. console.log('Redirect link clicked.');
  26. } else {
  27. console.log('Redirect link not found.');
  28. }
  29. } else {
  30. console.log('Redirect notice not found.');
  31. }
  32. })();