Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name reddit.com - r/minimalism theme
- // @namespace v2
- // @include *.reddit.com/r/*
- // @run-at document-start
- // ==/UserScript==
- function addStyle(style) {
- var head = document.getElementsByTagName("HEAD")[0];
- var ele = head.appendChild(window.document.createElement( 'style' ));
- ele.innerHTML = style;
- return ele;
- }
- // If you have your own css sheet that you want to use, change this URI.
- addStyle('@import "http://www.reddit.com/r/minimalism/stylesheet.css?v=91134ae44afc07984f513426a5248210";');
Advertisement
Add Comment
Please, Sign In to add comment