Last active
November 7, 2024 14:40
-
-
Save nzec/eed5451949e6f29d8f5ee4deab776121 to your computer and use it in GitHub Desktop.
This file contains 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 Pink Bar Fix | |
// @namespace https://gist.github.com/nzec | |
// @match https://www.youtube.com/* | |
// @grant GM_addStyle | |
// @version 1.0 | |
// @author NZEC | |
// @description Fixes YouTube's pink gradient bar | |
// ==/UserScript== | |
GM_addStyle ( ` | |
.ytp-progress-list .ytp-play-progress.ytp-swatch-background-color { | |
background: #ff0033; | |
} | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment