Using the Web Audio API in the console, it is possible to boost the volume beyond 100%.
Standard volume controls are capped at 1.0 (100%), but this method creates a "virtual amplifier" for the audio stream.
(function() {
const video = document.querySelector('video');
if (!video) return console.log("No video found. Try switching console context to the iframe.");
// Create audio context and nodes
const audioCtx = new (window.AudioContext || window.webkitAudioContext)();
const source = audioCtx.createMediaElementSource(video);
const gainNode = audioCtx.createGain();
// Set gain (2 = 200%, 3 = 300%, etc.)
gainNode.gain.value = 3;
// Connect the chain
source.connect(gainNode);
gainNode.connect(audioCtx.destination);
console.log("Volume boosted! Current gain: " + gainNode.gain.value);
window.gainNode = gainNode; // Store globally so you can change it later
})();Once the script is running, you can change the volume further by typing:
gainNode.gain.value = 5; // (replaces 5 with your desired multiplier).