Auto Refresh on Blocked Google

Refreshes the page if Google is blocked.

目前為 2025-03-12 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Auto Refresh on Blocked Google
// @description  Refreshes the page if Google is blocked.
// @match        *://www.google.com/*
// @version 0.0.1.20250312181900
// @namespace https://gf.qytechs.cn/users/1435046
// ==/UserScript==

(function() {
    'use strict';
    if (document.querySelector("#main-frame-error .error-code")?.textContent.includes("ERR_BLOCKED_BY_RESPONSE")) {
        location.reload();
    }
})();

QingJ © 2025

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