MyNoise autosetup

Randomizes levels and configures the player to my tastes

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         MyNoise autosetup
// @description  Randomizes levels and configures the player to my tastes
// @namespace    http://tampermonkey.net/
// @version      0.1
// @match        https://mynoise.net/NoiseMachines/*
// @grant        none
// ==/UserScript==

const prevFinishedLoading = window.finishedLoading;

finishedLoading = function() {
    prevFinishedLoading();
    for (var i = 0; i < iNUMBERBANDS; ++i) currentLevel[i]=0.5;
    setAnimationMode(3);
    setAnimationSpeed(80);
    setTimeout(() => setAnimationSpeed(0.25), 2000);
}