Skip to content

Instantly share code, notes, and snippets.

@marcsello
Created August 1, 2025 12:58
Show Gist options
  • Save marcsello/0315452fe98b5d8f25ef6ad5bb89dd81 to your computer and use it in GitHub Desktop.
Save marcsello/0315452fe98b5d8f25ef6ad5bb89dd81 to your computer and use it in GitHub Desktop.
Remove rounded corner from youtube videos
// ==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);
})();
@larrasket
Copy link

I <3 sharp edges

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment