您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Choose the default volume for YouTube videos!
// ==UserScript== // @name Auto Set Youtube Volume // @namespace YTVol // @version 5 // @description Choose the default volume for YouTube videos! // @author hacker09 // @match https://www.youtube.com/embed/* // @match https://www.youtube.com/watch?v=* // @icon https://www.youtube.com/s/desktop/03f86491/img/favicon.ico // @run-at document-start // @grant GM_getValue // @grant GM_setValue // ==/UserScript== (function() { 'use strict'; if (GM_getValue('Default_Volume') === undefined) //If the Default_Volume wasn't set yet { //Starts the if condition GM_setValue('Default_Volume', 20); //Save the Default YT Volume as 20% } //Finishes the if condition window.sessionStorage.setItem('yt-player-volume', '{"data":"{\\"volume\\":' + GM_getValue('Default_Volume') + ',\\"muted\\":false}","creation":' + new Date().valueOf() + '}'); //Set the Default YT Volume })();