您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces the currently-broken IPFS gateway used by ofans.party with a different, working one.
// ==UserScript== // @name OFans.party IPFS gateway replacer // @namespace https://greasyfork.org/users/390979-parliament // @description Replaces the currently-broken IPFS gateway used by ofans.party with a different, working one. // @version 0.1 // @author parliament // @match https://ofans.party/ // @run-at document-idle // ==/UserScript== 'use strict'; function replaceAllUris() { let links = document.getElementsByTagName("a"); let images = document.getElementsByTagName("img"); for (let link of links) { let uri = link.getAttribute("href"); let fixedUri = uri.replace(/ipfs\.greyh\.at/, "ninetailed.ninja"); link.setAttribute("href", fixedUri); } for (let image of images) { let uri = image.getAttribute("src"); let fixedUri = uri.replace(/ipfs\.greyh\.at/, "ninetailed.ninja"); image.setAttribute("src", fixedUri); console.log("Old URI: " + uri); console.log("New URI: " + fixedUri); } } var lastTimeout; let observer = new MutationObserver((changes, observer) => { if (lastTimeout !== undefined) { window.clearTimeout(lastTimeout); } lastTimeout = window.setTimeout(replaceAllUris, 200); }); observer.observe(document, {childList: true, subtree: true});