Jump to content

youtube round corner video question

Go to solution Solved by RockSolid1106,

Here's a TamperMonkey script I quickly made:

// ==UserScript==
// @name         Remove YT border-radius
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.youtube.com/watch*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=stackoverflow.com
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @run-at      document-idle
// ==/UserScript==

(function() {

    waitForKeyElements ('ytd-player[context="WEB_PLAYER_CONTEXT_CONFIG_ID_KEVLAR_WATCH"]', abc);
    'use strict';
    function abc(n){
        n[0].style.borderRadius=0
    }
})();

 

You can install the TamperMonkey extension on your browser, and add this script.

 

The script essentially selects the element which I found to have the border-radius(rounded corners) style attribute, and sets that attribute to zero(no rounded corners).

This should work as long as YT doesn't update and change the attributes.

how do i disable round corner video? i want square corner video back

 

Untitled.png

Link to comment
Share on other sites

Link to post
Share on other sites

Hmm. For me it's still square.

 

Might be a change they're rolling out. If it is you honestly may as well just learn to live with it, because YouTube is just gonna YouTube and they don't care if users like the changes they make or not.

 

Ah, yep: https://www.theverge.com/2023/8/22/23841737/youtube-rounded-corners-desktop

 

Corps aren't your friends. "Bottleneck calculators" are BS. Only suckers buy based on brand. It's your PC, do what makes you happy.  If your build meets your needs, you don't need anyone else to "rate" it for you. And talking about being part of a "master race" is cringe. Watch this space for further truths people need to hear.

 

Ryzen 7 5800X3D | ASRock X570 PG Velocita | PowerColor Red Devil RX 6900 XT | 4x8GB Crucial Ballistix 3600mt/s CL16

Link to comment
Share on other sites

Link to post
Share on other sites

Here's a TamperMonkey script I quickly made:

// ==UserScript==
// @name         Remove YT border-radius
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.youtube.com/watch*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=stackoverflow.com
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @run-at      document-idle
// ==/UserScript==

(function() {

    waitForKeyElements ('ytd-player[context="WEB_PLAYER_CONTEXT_CONFIG_ID_KEVLAR_WATCH"]', abc);
    'use strict';
    function abc(n){
        n[0].style.borderRadius=0
    }
})();

 

You can install the TamperMonkey extension on your browser, and add this script.

 

The script essentially selects the element which I found to have the border-radius(rounded corners) style attribute, and sets that attribute to zero(no rounded corners).

This should work as long as YT doesn't update and change the attributes.

"Coding skill isn’t about knowing how to make things; It’s about being able to find the right Stack Overflow code to copy paste."

 

bruh switch to dark mode its at the bottom of this page

VPN Server Guide

Link to comment
Share on other sites

Link to post
Share on other sites

Try watching youtube in theater mode. It centers the video on horizontal axis and the video retains square corners. This is how I watched all videos and didn't even know I had rounded corners at all until I switched back to default view to check!

My PC Specs: (expand to view)

 

 

Main Gaming Machine

CPU: Intel Core i7-10700K - OC to 5 GHz All Cores
CPU Cooler: Corsair iCUE H115i RGB Pro XT (Front Mounted AIO)
Motherboard: Asus TUF GAMING Z490-PLUS (WI-FI)
Memory: Corsair Vengeance LPX 32 GB (2 x 16 GB) DDR4-3600

Storage: Intel 665p 1 TB M.2-2280 NVME SSD (x2)
Video Card: Zotac RTX 3070 8 GB GAMING Twin Edge OC

Power Supply: Corsair RM850 850W
Case: Corsair 4000D Airflow
Case Fan 120mm: Noctua F12 PWM 54.97 CFM 120 mm (x1)
Case Fan 140mm: Noctua A14 PWM 82.5 CFM 140 mm (x4)
Monitor Main: Asus VG278QR 27.0" 1920x1080 165 Hz
Monitor Vertical: Asus VA27EHE 27.0" 1920x1080 75 Hz

Link to comment
Share on other sites

Link to post
Share on other sites

Just click Theater mode. Square again. 

 

I never not used theater mode so its just always rounded. Looking at it now.. I don't even notice it. 🤷‍♂️

Link to comment
Share on other sites

Link to post
Share on other sites

12 hours ago, RockSolid1106 said:

Here's a TamperMonkey script I quickly made:

// ==UserScript==
// @name         Remove YT border-radius
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.youtube.com/watch*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=stackoverflow.com
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @run-at      document-idle
// ==/UserScript==

(function() {

    waitForKeyElements ('ytd-player[context="WEB_PLAYER_CONTEXT_CONFIG_ID_KEVLAR_WATCH"]', abc);
    'use strict';
    function abc(n){
        n[0].style.borderRadius=0
    }
})();

 

You can install the TamperMonkey extension on your browser, and add this script.

 

The script essentially selects the element which I found to have the border-radius(rounded corners) style attribute, and sets that attribute to zero(no rounded corners).

This should work as long as YT doesn't update and change the attributes.

thank you

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×