Skip to content

Instantly share code, notes, and snippets.

@mmyjona
Last active April 16, 2024 01:52
Show Gist options
  • Save mmyjona/22d9ff2c5a8ef4402b44fd9cf7ba9de8 to your computer and use it in GitHub Desktop.
Save mmyjona/22d9ff2c5a8ef4402b44fd9cf7ba9de8 to your computer and use it in GitHub Desktop.
hckrnews balck out userscript
// ==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