// ==UserScript== // @name AniWave Redirector // @namespace https://greasyfork.org/en/users/1298622-kayfir // @version 2024-05-08 // @description Redirects https://aniwave.to/ to https://aniwave.to/home // @author kayfir // @license MIT // @match https://aniwave.to/ // @icon https://www.google.com/s2/favicons?sz=64&domain=aniwave.to // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.location.replace("https://aniwave.to/home"); })();