Greasy Fork is available in English.
Redirects https://aniwave.to/ to https://aniwave.to/home
当前为
// ==UserScript==
// @name AniWave Redirector
// @namespace http://greasyfork.icu/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");
})();