Greasy Fork is available in English.

Anistar редирект

Автоматически переключает на сайт анистар

Per 12-02-2020. Zie de nieuwste versie.

// ==UserScript==
// @name         Anistar редирект
// @namespace    http://tampermonkey.net/
// @description  Автоматически переключает на сайт анистар
// @include      /^https?://(.*)anistar.appspot.com/.*$/

// @author        DygDyg
// @require       https://code.jquery.com/jquery-3.3.1.min.js
// @icon          https://anistar.appspot.com/favicon.png
// @version       0.3
// ==/UserScript==


var dop = "raspisanie-vyhoda-seriy-ongoingov.html";
var x1 = $("btn btn-large animated tada");
var x2 = $('body > section.banner > div > div > div > section > a');
URL_ = null;

if (x1.text()) {
    URL_ = x1.text()
}
else if (x2.text()) {
    URL_ = x2.text()
}

if (URL_) {
    document.location.href = URL_ + "/" + dop;
} else {
    console.log("ooops!!");
}