您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Temporary fix aniwave by loading in the CSS and JS files that are currently unable to load from external sources.
当前为
// ==UserScript== // @name Temporary fix aniwave // @namespace http://tampermonkey.net/ // @version 2024-01-18 // @description Temporary fix aniwave by loading in the CSS and JS files that are currently unable to load from external sources. // @author You // @match https://aniwave.to/watch/majo-to-yaijuu.m2v17/ep-2 // @icon https://www.google.com/s2/favicons?sz=64&domain=aniwave.to // @grant none // @include https://aniwave.*/* // @license MIT // ==/UserScript== var src = document.createElement('link'); src.setAttribute('rel', 'stylesheet'); src.setAttribute('href', 'https://web.archive.org/web/20240104000537cs_/https://s2.bunnycdn.ru/assets/t1/s1/min/all.css?6595f50065957d92'); src.setAttribute('id', 'aAaA010101'); var scr2 = document.createElement('script'); scr2.setAttribute('type', 'text/javascript'); scr2.setAttribute('charset', 'utf-8'); scr2.setAttribute('src', 'https://web.archive.org/web/20240104000537js_/https://s2.bunnycdn.ru/assets/t1/min/all.js?6595f50065957d92'); scr2.setAttribute('id', 'aAaA010101'); document.head.appendChild(src); document.head.appendChild(scr2);