Skip to content

Instantly share code, notes, and snippets.

@airbr
Created November 20, 2020 04:18
Show Gist options
  • Save airbr/e7df16dfd3eef7917cf25a305be6a7ee to your computer and use it in GitHub Desktop.
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
// ==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