NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Picarto Set Chat Notification Volume
// @namespace http://www.furaffinity.net/maloo
// @version 0.2
// @description Turn that down!
// @license MIT
// @include https://picarto.tv/*
// @exclude https://picarto.tv/communities*
// @exclude https://picarto.tv/
// @exclude https://picarto.tv/settings*
// @grant none
// @run-at document-start
// ==/UserScript==
var waitForAudio = setInterval(function() {
if (document.querySelector('audio[src*="notification"]'))
{
document.querySelector('audio[src*="notification"]').volume = 0.5; // range from 0.0 to 1.0
document.querySelector('audio[src*="raffle"]').volume = 0.5; // range from 0.0 to 1.0
clearInterval(waitForAudio);
}
},500);