// ==UserScript== // @name AniWave Auto Enabler // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs // @version 4 // @description Automatically enables the AniWave website default auto play and auto skip options. // @author hacker09 // @include https://aniwave.*/watch/* // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://9anime.to&size=64 // @run-at document-end // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(function() { //Starts the setTimeout function new MutationObserver(function(mutations) { //Starts the setTMutationObserverimeout function location.href.includes('ep-1') ? (document.querySelector(".auto-skip.text-warning > i.fa-solid.fa-square") === null ? document.querySelector(".auto-skip.text-warning > i").click() : '') : (document.querySelector(".auto-skip.text-warning > i.fa-solid.fa-square") !== null ? document.querySelector(".auto-skip.text-warning > i").click() : ''); //Enable/Disable Auto Skip }).observe(document.querySelector("#player-wrapper"), { childList: true, subtree: true }); //Finishes the setTMutationObserverimeout function document.querySelector(".auto-play > i.fa-solid.fa-square") !== null ? document.querySelector(".auto-play > i").click() : ''; //Enable Auto Play }, 0); //Finishes the setTimeout function })();