Last active
September 6, 2018 07:14
-
-
Save Ser-Gen/8f6242caaad42f63a7285543b9bf3dca to your computer and use it in GitHub Desktop.
greaseLynx
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 greaseLynx | |
// @include http*//*.* | |
// @version 1 | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
document.documentElement.insertAdjacentHTML(`afterbegin`, ` | |
<style> | |
* { background-color: #333 !important; color: #ccc !important; } | |
body { background-color: #333 !important; color: #ccc !important; margin: 10px !important; } | |
a { color: #2be !important; } | |
* { max-width: calc(100vw - 20px) !important; } | |
img { height: auto !important; } | |
</style> | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment