您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Reduce volume on Redgifs
当前为
// ==UserScript== // @name Unblastify Redgifs // @namespace http://www.redgifs.com/ // @version 1.0 // @license GPLv3 // @description Reduce volume on Redgifs // @author xdpirate // @match https://www.redgifs.com/watch/* // @icon https://www.google.com/s2/favicons?sz=64&domain=redgifs.com // @grant none // ==/UserScript== // Set your desired default volume level here. Range: 0-1, default is 0.3 (30%). let volumeLevel = 0.3; function adjustVolume() { let videoElements = document.querySelectorAll("video"); if(videoElements !== null && videoElements !== undefined) { for(let i = 0; i < videoElements.length; i++) { videoElements[i].volume = volumeLevel; console.log(videoElements[i].src + "\nVolume reduced to " + volumeLevel + "."); } } } let observerOptions = {subtree: true, childList: true}; let mObserver = new MutationObserver(function() { adjustVolume(); }); mObserver.observe(document, observerOptions);