您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fix external links on Kemono's Discord mirrors
// ==UserScript== // @name Kemono.Party - Fix Discord external links // @namespace http://tampermonkey.net/ // @version v1.0 // @description Fix external links on Kemono's Discord mirrors // @author eientei // @match https://*.kemono.su/discord/server/* // @icon https://www.google.com/s2/favicons?sz=64&domain=kemono.su // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function rewriteLinks(links) { links.forEach(link => { if (link.href.includes('/data/https://')) { link.href = link.href.replace(/.*\/data\//, ''); } }); } rewriteLinks(document.querySelectorAll('.message > div > a[href*="/data/https://"]')); const observer = new MutationObserver(mutations => { for (let mutation of mutations) { mutation.addedNodes.forEach(node => { if (node.nodeType === 1) { const newLinks = node.querySelectorAll?.('.message > div > a[href*="/data/https://"]'); if (newLinks?.length) { rewriteLinks(newLinks); } } }); } }); observer.observe(document.body, { childList: true, subtree: true }); })();