您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
CatWar delete debuff from "Prelest"
// ==UserScript== // @name CatWar Прелесть фикс // @namespace http://tampermonkey.net/ // @version 1.3 // @description CatWar delete debuff from "Prelest" // @author scroptnik // @match https://catwar.net/cw3/ // @icon https://www.google.com/s2/favicons?sz=64&domain=catwar.net // @grant none // @run-at document-start // @license scroptnik // ==/UserScript== (function() { 'use strict'; const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { mutation.addedNodes.forEach(function(node) { console.log(node.src); if (node.nodeName === 'SCRIPT' && node.src && node.src.includes("cw3.js?")) { const replacementScript = document.createElement('script'); replacementScript.src = 'https://cdn.jsdelivr.net/gh/scroptnik/cw3_no_schatz@main/new_cw3.js'; node.parentNode.replaceChild(replacementScript, node); } }); }); }); observer.observe(document.head, { childList: true, subtree: true }); })();