Skip to content

Instantly share code, notes, and snippets.

@Ser-Gen
Last active September 6, 2018 07:14
Show Gist options
  • Save Ser-Gen/8f6242caaad42f63a7285543b9bf3dca to your computer and use it in GitHub Desktop.
Save Ser-Gen/8f6242caaad42f63a7285543b9bf3dca to your computer and use it in GitHub Desktop.
greaseLynx
// ==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