Last active
April 16, 2024 01:52
-
-
Save mmyjona/22d9ff2c5a8ef4402b44fd9cf7ba9de8 to your computer and use it in GitHub Desktop.
hckrnews balck out 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 hckrnews balck out | |
// @include https://hckrnews.com/* | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== | |
GM_addStyle ( ` | |
* { | |
color: black !important; | |
} | |
.menu .nav-pills > .active > a { | |
background-color: white !important; | |
border:solid !important; | |
} | |
.entries .day { | |
border-bottom: 1px solid black; | |
padding-bottom: 3px; | |
} | |
.entries .tab { | |
background-color: white !important; | |
border:solid !important; | |
border-style: solid solid none solid !important; | |
} | |
` ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment