ShowUp.TV Tips Sounds

Dodaje dźwięk żetona przy otrzymywaniu wiadomości prywatnej (płatnej), napiwku na transmisji i priv (przy zakończeniu też)

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

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.

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

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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        ShowUp.TV Tips Sounds
// @namespace   [email protected]
// @author      fapka
// @description Dodaje dźwięk żetona przy otrzymywaniu wiadomości prywatnej (płatnej), napiwku na transmisji i priv (przy zakończeniu też)
// @include     https://showup.tv/* 
// @version     0.3.5
// @grant       none
// @run-at      document-end
//
// ==/UserScript==

            
        if ( added >= 4 && added <= 6 )
            soundId = 0;    
        else if ( added >= 10 && added <= 99 )
            soundId = 1;    
        else if ( added >= 100 && added <= 999 )
            soundId = 2;

        if ( soundId >= 0 ) { 
            mSoundTips[soundId].play();
            mTokenNumber = tokens;
        }