Skip to content

Instantly share code, notes, and snippets.

@nzec
Last active November 7, 2024 14:40
Show Gist options
  • Save nzec/eed5451949e6f29d8f5ee4deab776121 to your computer and use it in GitHub Desktop.
Save nzec/eed5451949e6f29d8f5ee4deab776121 to your computer and use it in GitHub Desktop.
// ==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