Created
September 7, 2020 00:54
-
-
Save ohmika/e246e3a6b6dc2c0c098d118ea42998e3 to your computer and use it in GitHub Desktop.
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 YouTube Fix Thumbnails | |
// @match *://www.youtube.com/* | |
// @exclude *://www.youtube.com/embed/* | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== | |
GM_addStyle('ytd-rich-item-renderer { width: 150px !important; }'); | |
GM_addStyle('yt-img-shadow#avatar {width: 20px !important; height: 20px !important}'); | |
GM_addStyle('yt-formatted-string {font-size: 1rem !important;}'); | |
GM_addStyle('ytd-video-meta-block {display: none !important;}'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment