Created
November 28, 2024 19:17
-
-
Save jnewc/0e8ee1e33e3bd40d6af619c3081f0d40 to your computer and use it in GitHub Desktop.
Make the YouTube progress bar red again (TamperMonkey UserScript)
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 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