Last active
November 20, 2020 09:04
-
-
Save Siilwyn/669bb2b69cf039a02b6f209415a312f9 to your computer and use it in GitHub Desktop.
Violentmonkey, mark watched YouTube videos
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 Mark watched YouTube videos | |
// @version 5 | |
// @match https://www.youtube.com/feed/subscriptions | |
// @description Mark watched YouTube videos more prominently. | |
// @namespace https://gist.github.com/Siilwyn/ | |
// @homepageURL https://gist.github.com/Siilwyn/669bb2b69cf039a02b6f209415a312f9/ | |
// @downloadURL https://gist.githubusercontent.com/Siilwyn/669bb2b69cf039a02b6f209415a312f9/raw/userscript.js | |
// @updateURL https://gist.githubusercontent.com/Siilwyn/669bb2b69cf039a02b6f209415a312f9/raw/userscript.js | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle(` | |
ytd-thumbnail-overlay-resume-playback-renderer { | |
height: 100% !important; | |
opacity: 0.7 !important; | |
} | |
ytd-thumbnail-overlay-resume-playback-renderer { | |
background: none; | |
} | |
.ytd-thumbnail-overlay-resume-playback-renderer { | |
height: 100% !important; | |
background-color: #000000 !important; | |
} | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment