Skip to content

Remove Rounded Corners on YouTube Thumbnails by apampuch

Details

Authorapampuch

LicenseGPL v3

Categoryyoutube.com

Created

Updated

Code size694 B

Code checksum71369595

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Removes the rounded corners of YouTube video thumbnails.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Remove Rounded Corners on Youtube Thumbnails
@version      20231110.05.21
@namespace    userstyles.world/user/apampuch
@description  Removes the rounded corners of sidebar thumbnails (possibly others too)
@author       apampuch
@license      GPL v3
==/UserStyle== */

@-moz-document domain("youtube.com") {
ytd-thumbnail[size="small"] a.ytd-thumbnail,
ytd-thumbnail[size="small"]::before {
    border-radius: 0px;
}

ytd-thumbnail[size="medium"] a.ytd-thumbnail,
ytd-thumbnail[size="medium"]::before {
    border-radius: 0px;
}

ytd-thumbnail[size="large"] a.ytd-thumbnail,
ytd-thumbnail[size="large"]::before {
    border-radius: 0px;
}
}

Reviews

No reviews yet.