Guest User

Untitled

a guest
Jul 20th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // ==UserScript==
  2. // @name reddit.com - r/minimalism theme
  3. // @namespace v2
  4. // @include *.reddit.com/r/*
  5. // @run-at document-start
  6. // ==/UserScript==
  7.  
  8. function addStyle(style) {
  9. var head = document.getElementsByTagName("HEAD")[0];
  10. var ele = head.appendChild(window.document.createElement( 'style' ));
  11. ele.innerHTML = style;
  12. return ele;
  13. }
  14.  
  15. // If you have your own css sheet that you want to use, change this URI.
  16.  
  17. addStyle('@import "http://www.reddit.com/r/minimalism/stylesheet.css?v=91134ae44afc07984f513426a5248210";');
Advertisement
Add Comment
Please, Sign In to add comment