您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
替换要福利href中的网址,防止二次跳转乱码
// ==UserScript== // @name 防止要福利部分链接二次跳转乱码 // @namespace https://github.com/dadaewqq/fun // @version 0.2 // @description 替换要福利href中的网址,防止二次跳转乱码 // @author dadaewqq // @match https://1fuli.xyz/* // @match https://1fuli.life/* // @match https://www.yeeach.com/* // @match https://www.xunihao.org/* // @match https://seju.life/* // @icon https://1fuli.xyz/favicon.ico // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { $('a[href*="https://jubt.top"]').each(function() { var href = $(this).attr('href'); $(this).attr('href', href.replace('https://jubt.top', 'https://jubt.fun')); }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址