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