Twitter is the new black

Black theme for Twitter

当前为 2015-05-18 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Twitter is the new black
  3. // @description Black theme for Twitter
  4. // @version 0.0.1.20150518161836
  5. // @namespace https://greasyfork.org/users/11517
  6. // ==/UserScript==
  7. var link = window.document.createElement('link');
  8. link.rel = 'stylesheet';
  9. link.type = 'text/css';
  10. link.href = 'data:text/css,' +
  11. // Selectors start here
  12. '#u-textInheritColor{color:red!important; }' +
  13. 'P { line-height: 1.5; }';
  14. document.getElementsByTagName("HEAD")[0].appendChild(link);
  15.  
  16. /* bang bang pium pium*/