Temporary fix aniwave

Temporary fix aniwave by loading in the CSS and JS files that are currently unable to load from external sources.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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://cdn.gls.cx/aniwaveall.css');
src.setAttribute('id', 'aAaA010101');

var scr2 = document.createElement('script');
scr2.setAttribute('type', 'text/javascript');
scr2.setAttribute('charset', 'utf-8');
scr2.setAttribute('src', 'https://cdn.gls.cx/aniwaveall.js');
scr2.setAttribute('id', 'aAaA010101');

document.head.appendChild(src);
document.head.appendChild(scr2);