Created
August 1, 2025 12:58
-
-
Save marcsello/0315452fe98b5d8f25ef6ad5bb89dd81 to your computer and use it in GitHub Desktop.
Remove rounded corner from youtube videos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name I paid for the edges | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-08-01 | |
| // @description Remove rounded corner from youtube videos | |
| // @author Marcsello | |
| // @match https://www.youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| var style = document.createElement('style'); | |
| style.innerText = ` | |
| .ytd-watch-flexy { | |
| border-radius: 0 !important; | |
| } | |
| `; | |
| document.head.appendChild(style); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I <3 sharp edges