Skip to content

Instantly share code, notes, and snippets.

@jnewc
Created November 28, 2024 19:17
Show Gist options
  • Save jnewc/0e8ee1e33e3bd40d6af619c3081f0d40 to your computer and use it in GitHub Desktop.
Save jnewc/0e8ee1e33e3bd40d6af619c3081f0d40 to your computer and use it in GitHub Desktop.
Make the YouTube progress bar red again (TamperMonkey UserScript)
// ==UserScript==
// @name Make the YouTube progress bar red again
// @namespace http://tampermonkey.net/
// @version 2024-11-24
// @description try to take over the world!
// @author You
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
const styles = `
.ytp-play-progress.ytp-swatch-background-color {
background: #f03 !important;
}`;
GM_addStyle(styles);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment