Disable the border radius on youtube's video player, make the youtube player rectangular again
disable rounded videos on youtube.com by vulonkaaz
Details
Authorvulonkaaz
LicenseThe Unlicense
Categoryyoutube.com
Created
Updated
Size458 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This userstyle has been made in less than 10 minutes on the 21st of August 2023, it's purpose is to make the video player on youtube rectangular again cause I hate rounded corners on a video player and it is designed to work on current version of youtube and will break whenever youtube change some things
I offer no warrenty whatsoever if my style break you're on your own to fix it
You are free to redistribute and modify those two lines of code however you want
Source code
/* ==UserStyle==
@name disable rounded videos on youtube.com
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Disable the border radius on youtube video player
@author vulonkaaz
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Insérer le code ici... */
ytd-watch-flexy[rounded-player-large][default-layout] #ytd-player.ytd-watch-flexy {
border-radius: 0px;
}
}