Navi be quiet

lowers the volume of Navi so it isn't as annoying

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 or Violentmonkey 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.

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

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        Navi be quiet
// @namespace   pendevin
// @description lowers the volume of Navi so it isn't as annoying
// @include     http://boards.endoftheinter.net/showmessages.php*
// @include     https://boards.endoftheinter.net/showmessages.php*
// @version     1
// @grant       none
// @require     http://code.jquery.com/jquery-2.1.3.min.js
// ==/UserScript==


const NAVI_VOLUME_PERCENTAGE=3;


this.$ = this.jQuery = jQuery.noConflict(true);

var navi=$('#sound_player');
navi[0].volume=NAVI_VOLUME_PERCENTAGE/100;
//do we need anything else?
//nop