酷安链接重定向

跳转酷安链接到实际地址

// ==UserScript==
// @name        酷安链接重定向
// @version     1.0
// @description 跳转酷安链接到实际地址
// @author      ChatGPT
// @match       https://www.coolapk.com/link?url=*
// @run-at      document-start
// @grant       none
// @namespace https://gf.qytechs.cn/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;
  }
})();

QingJ © 2025

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