Last active
January 24, 2024 23:29
-
-
Save Tackyou/3b7a1bc6b3594c1edd4df982ab775cae to your computer and use it in GitHub Desktop.
Dark Mode helper for Dark Reader on studocu.com
This file contains hidden or 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 Dark Mode Helper StuDocu.com | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description for DarkReader addon | |
// @author Tackyou | |
// @match https://www.studocu.com/*/document/* | |
// @icon https://www.google.com/s2/favicons?domain=studocu.com | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('.page-content > div > img:nth-child(1){ filter: invert(1) }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment