touchgal快捷跳转

标题

// ==UserScript==
// @name         touchgal快捷跳转
// @namespace    http://tampermonkey.net/
// @version      2025-04-12
// @description  标题
// @author       Nostalgia
// @match        https://*touchgal.*/redirect?url=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=touchgal.io
// @grant        none
// @license      personal
// ==/UserScript==
(function() {
    'use strict';
let url=location.href;
location.href=decodeURIComponent(url.match(/url=(.*)/)[1]);
    
})();