TwitterGreyBackground

grey background for twitter

当前为 2015-07-21 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name TwitterGreyBackground
  3. // @namespace http://www.slintes.net/greasemonkey/
  4. // @description grey background for twitter
  5. // @description use this add-on on firefox: https://addons.mozilla.org/firefox/addon/748
  6. // @description works natively on chrome, but I recommend this extension: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
  7. // @author Marc Sluiter
  8. // @copyright 2015 Marc Sluiter
  9. // @license Apache License, Version 2.0, see https://github.com/slintes/userscripts/blob/master/LICENSE
  10. // @include https://twitter.com/*
  11. // @version 0.0.1
  12. // @grant GM_addStyle
  13. // ==/UserScript==
  14.  
  15. var color = "#333";
  16.  
  17. GM_addStyle("body { background-color:" + color + ";}");