Google Redirect Notice Bypasser

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

2024-03-31 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Google Redirect Notice Bypasser
// @namespace    http://greasyfork.org/
// @version      1.0
// @description  Automatically clicks the specified link on Google's redirect notice page because the page is so annoying.
// @author       Liam
// @match        https://www.google.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    console.log('Script started.');

    console.log('Checking if the page contains the redirect notice...');
    if(document.querySelector('.mymGo > .aXgaGb > font > b')) {
        console.log('Redirect notice found.');

        var redirectLink = document.querySelector('.fTk7vd a');
        if(redirectLink) {
            console.log('Redirect link found. Clicking...');
            redirectLink.click();
            console.log('Redirect link clicked.');
        } else {
            console.log('Redirect link not found.');
        }
    } else {
        console.log('Redirect notice not found.');
    }
})();