Created
November 20, 2020 04:18
-
-
Save airbr/e7df16dfd3eef7917cf25a305be6a7ee to your computer and use it in GitHub Desktop.
About as hacky and simple of a way to get Dark Mode on pinboard as you can get , using Tamper Monkey
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 pinboard-dark-mode | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include http://pinboard.in/* | |
// @include https://pinboard.in/* | |
// @include http://*.pinboard.in/* | |
// @include https://*.pinboard.in/* | |
// @grant none | |
// ==/UserScript== | |
document.body.style.background = 'black'; | |
document.body.style.filter = 'invert(1) hue-rotate(180deg)'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment