Skip to content

Instantly share code, notes, and snippets.

View CrazySqueak's full-sized avatar

ItsAnnie CrazySqueak

View GitHub Profile
@schovi
schovi / brightness.js
Last active September 24, 2024 11:33
Small scripts to boost twitch volume beyond 100% or change brightness of video
// To use this, open console (developer tools), change the brigtness you want, paste it there and run
// 1 = 100% ...
twitchBrightness(1.2)
function twitchBrightness(amount) {
const video = document.querySelector('video')
video.style.filter = `brightness(${amount * 100}%)`
}