Aktualisiert das Neueste Episoden und Serien Modul ohne Reload
// ==UserScript==
// @name BS Modul Updater
// @namespace https://bs.to/
// @version 3.3
// @description Aktualisiert das Neueste Episoden und Serien Modul ohne Reload
// @author Asu / High
// @match https://bs.to
// @match https://bs.to/home
// @match https://bs.cine.to/
// @match https://burningseries.ac/
// @match https://burningseries.cx/
// @icon https://bs.to/favicon.ico
// @require https://update.greasyfork.org/scripts/586168/1870827/BS_Library_New.js
// @grant none
// ==/UserScript==
// jshint esversion: 6
const BS = window.BS;
const interval = 1000 * 60; //Intervall in Millisekunden (1000ms * 60 = 1min)
(function() {
'use strict';
setInterval(() => {
BS.Module.MultiUpdate(['#newest_episodes', '#newest_series']);
}, interval);
})();