Advertisement
Guest User

Untitled

a guest
Nov 27th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Stack Overflow background
  3. // @namespace http://stylebot.me/styles/4
  4. // @description
  5. // @include http://stackoverflow.com/*
  6. // @include http://meta.stackoverflow.com/*
  7. // @include http://superuser.com/*
  8. // @include http://meta.superuser.com/*
  9. // @include http://serverfault.com/*
  10. // @include http://meta.serverfault.com/*
  11. // @include http://askubuntu.com/*
  12. // @include http://meta.askubuntu.com/*
  13. // @include http://answers.onstartups.com/*
  14. // @include http://meta.answers.onstartups.com/*
  15. // @include http://stackapps.com/*
  16. // @include http://*.stackexchange.com/*
  17. // @author Dukeling
  18. // ==/UserScript==
  19. var styleEl = document.createElement('style');
  20. styleEl.type = 'text/css';
  21. styleEl.innerHTML = 'body{background:#000;color:#ccc;} #question-header a{color:#ccc;}';
  22. document.documentElement.appendChild(styleEl);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement