// ==UserScript== // @name 酷安链接重定向 // @version 1.0 // @description 跳转酷安链接到实际地址 // @author 安和壹 // @match https://www.coolapk.com/link?url=* // @run-at document-start // @grant none // @namespace // ==/UserScript== (function() { var url = window.location.href; var match = url.match(/url=(.*)/); if (match) { var realUrl = decodeURIComponent(match[1]); window.location.href = realUrl; } })();