Wis / Redirect Notice auto skip

// ==UserScript==
// @name         Redirect Notice auto skip
// @namespace    http://tampermonkey.net/
// @icon         https://www.google.com/s2/favicons?domain=google.com
// @version      1.0
// @description  auto redirects to url as fast as possible
// @author       Wis
// @match        https://www.google.com/url?q=*
// @grant        none
// @run-at       document-start
// @license MIT
// ==/UserScript==

if (document.title == "Redirect Notice") {
  const urlParams = new URLSearchParams(window.location.search);
  const url = urlParams.get('q');
  window.location.href = url;
}