Flitter

Position Twitter feed at left

当前为 2014-12-16 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Flitter
  3.  
  4. // @version 1.0
  5.  
  6. // @namespace http://bounced.info
  7.  
  8. // @description Position Twitter feed at left
  9.  
  10. // @include http://twitter.com/
  11. // @include https://twitter.com/
  12.  
  13. // @grant none
  14.  
  15. // ==/UserScript==
  16.  
  17. var x = document.getElementsByClassName('dashboard');
  18. var i;
  19. for (i = 0; i < x.length; i++) {
  20. x[i].style.cssFloat = 'right';
  21. }
  22. document.getElementById('timeline').style.cssFloat = 'left';