Greasy Fork

AniWave Auto Enabler

Automatically enables the AniWave website default auto play option.

目前为 2024-08-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         AniWave Auto Enabler
// @namespace    https://greasyfork.org/en/users/670188-hacker09?sort=daily_installs
// @version      6
// @description  Automatically enables the AniWave website default auto play option.
// @author       hacker09
// @include      https://aniwave.*/anime-watch/*
// @icon         https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://aniwave.se&size=64
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
  'use strict';
    document.querySelector(".auto-play > i.fa-solid.fa-square") !== null ? document.querySelector(".auto-play > i").click() : ''; //Enable Auto Play
})();