Bypass the redirection notice

Bypass the redirection notice displayed by Google when clicking a link on custom clients

目前為 2023-01-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Bypass the redirection notice
// @name:fr     Outrepasser l'alerte de redirection
// @description Bypass the redirection notice displayed by Google when clicking a link on custom clients
// @description:fr Outrepasser l'alerte de redirection affichée par Google lorsque l'on clique sur un lien dans un client non-officiel
// @namespace   https://deuchnord.fr
// @match       https://www.google.com/url?*
// @icon        https://www.google.com/favicon.ico
// @license     AGPL-3.0
// @grant       none
// @version     1.0.0
// @author      Deuchnord
// ==/UserScript==

(function() {

  const url = new URL(document.location.href);
  let redirectTo = url.searchParams.get("url");
  document.location.href = redirectTo;

})();

QingJ © 2025

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