Increases Amazon/YouTube video brightness/contrast
Increase video brightness/contrast by danielzgtg

Details
Authordanielzgtg
LicenseCC Zero
Categoryprimevideo, youtube
Created
Updated
Code size438 B
Code checksumb96ebc4f
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Increases video brightness and contrast. This might be useful for monitor problems or a room with a lot of glare. Normally, movies have color grading done so to get the specific look the director wants on most screens, so this may wash out the colors. However, some screens are unique, and this userstyle can make an unwatchably dim movie watchable.
Source code
/* ==UserStyle==
@name Increase video brightness
@version 20240129.03.28
@namespace ?
==/UserStyle== */
@-moz-document domain("primevideo.com"), domain("youtube.com") {
canvas, video {
/*
* Commissioned for https://askubuntu.com/q/1501639/1004020
* Freely adjust the values inside the contrast and brightness below
* to what you prefer.
*/
filter:
contrast(120%)
brightness(120%)
!important;
}
}