Greasy Fork

AniWave Redirector

Redirects https://aniwave.to/ to https://aniwave.to/home

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

// ==UserScript==
// @name         AniWave Redirector
// @namespace    https://greasyfork.org/en/users/1298622-kayfir
// @version      final
// @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
// ==/UserScript==

    (function() {
    'use strict';

    window.location.replace("https://aniwave.to/home");
})();