Skip to content

YT Fixes by michaelokgb

Screenshot of YT Fixes

Details

Authormichaelokgb

LicenseCC BY-SA

Categoryyoutube

Created

Updated

Code size865 B

Code checksum3c7f6ae1

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Fixes for stupid decisions made by YT

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           YT Fixes
@namespace      userstyles.world/user/michaelokgb
@version        1.0.1
@description    Fixes for stupid decisions made by YT
@author         MiChAeLoKGB
@license        CC BY-SA
==/UserStyle== */
@-moz-document domain("youtube.com") {
    /* Hide shorts from menu */
    a[title="Shorts"] {
        display: none !important;
    }

    ytd-rich-shelf-renderer[is-shorts] {
        display: none !important;
    }

    /* Fix the stupid progress gradient BS */
    .ytp-play-progress {
        background: var(--yt-spec-static-brand-red, #f03) !important;
    }

    /* Fix the grid made 100 year old blind people */
    ytd-browse.ytd-page-manager:not([page-subtype="channels"]) ytd-rich-grid-renderer {
        --ytd-rich-grid-item-max-width: 550px !important;
        --ytd-rich-grid-items-per-row: 6 !important;
    }
}

Reviews

No reviews yet.