M3Board

M3Board Script für hellere Schriftart

  1. // M3Board Script für hellere Schriftart
  2. // version 0.1
  3. // 2009-10-18
  4. // Copyright 2009-2014 Marc Sluiter
  5. // Licensed under the Apache License, Version 2.0
  6. // https://github.com/slintes/userscripts/blob/master/LICENSE
  7. //
  8. // --------------------------------------------------------------------
  9. //
  10. // Dies ist ein Greasemonkey Userskript.
  11. // Unter Firefox wird zur Installation das Greasemonkey Addon benötigt: https://addons.mozilla.org/de/firefox/addon/748
  12. // Unter Chrome empfehle ich Tampermonkey (ist aber nicht zwingend notwendig): https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=de
  13. //
  14. // --------------------------------------------------------------------
  15. //
  16. // ==UserScript==
  17. // @name M3Board
  18. // @namespace http://www.slintes.net/greasemonkey/
  19. // @description M3Board Script für hellere Schriftart
  20. // @include *m3.meganeboard.de/*
  21. // @version 0.0.1.20140827084530
  22. // ==/UserScript==
  23.  
  24. var color = "#DCDCDC";
  25.  
  26. GM_addStyle(".content { color:" + color + ";}");
  27. GM_addStyle(".postbody { color:" + color + ";}");
  28. GM_addStyle(".postprofile { color:" + color + ";}");
  29. GM_addStyle(".postprofile strong { color:" + color + ";}");
  30. GM_addStyle(".post:target .content { color:" + color + ";}");