自动跳转

自动跳转链接 懒人小工具

目前為 2023-07-16 提交的版本,檢視 最新版本

// ==UserScript==
// @name                自动跳转
// @namespace           https://github.com/GuoChen-thlg
// @version             1.0.1
// @description         自动跳转链接 懒人小工具
// @author              THLG
// @supportURL          [email protected]
// @contributionURL     https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CK755FJ9PSBZ8
// @contributionAmount  1
// @match               *://link.juejin.cn/*
// @match               *://link.csdn.net/*
// @grant               none
// @run-at              document-end
// ==/UserScript==
(function () {
    'use strict';
    // juejin.cn
    const url = new URL(location.href)
    if(url.host === 'link.juejin.cn' || url.host === 'link.csdn.net'){
        location.href = decodeURIComponent(url.searchParams.get('target'))
    }
    // code
})();

QingJ © 2025

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