Greasy Fork is available in English.

AniWave Auto Enabler

Automatically enables the AniWave website default auto play and auto next options.

Instalar este script¿?
Script recomendado por el autor

Puede que también te guste AniWave Ads Hider.

Instalar este script
  1. // ==UserScript==
  2. // @name AniWave Auto Enabler
  3. // @namespace https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
  4. // @version 8
  5. // @description Automatically enables the AniWave website default auto play and auto next options.
  6. // @author hacker09
  7. // @include https://aniwave.*/watch/*
  8. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://aniwave.se&size=64
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.querySelector(".auto-play > i.fa-solid.fa-square") !== null ? document.querySelector(".auto-play > i").click() : ''; //Enable Auto Play
  16. document.querySelector(".fa-square") !== null ? document.querySelector(".fa-square").click() : ''; //Enable Auto Next
  17. })();