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://gf.qytechs.cn/
// @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.');
    }
})();

QingJ © 2025

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