您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
lowers the volume of Navi so it isn't as annoying
// ==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