Guest User

Twitter Right-side Dashboard

a guest
Feb 12th, 2012
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       Twitter Right-side Dashboard
  3. // @version    0.1
  4. // @description  Move the dashboard at twitter.com to the right side.
  5. // @include    http://twitter.com/*
  6. // @include    https://twitter.com/*
  7. // @include    http://www.twitter.com/*
  8. // @include    https://www.twitter.com/*
  9. // ==/UserScript==
  10.  
  11. var ucss = document.createElement("style");
  12.  
  13. ucss.type = "text/css";
  14. umcss.innerHTML = ".content-main { float: left; } .dashboard { float: right; }";
  15.  
  16. document.head.appendChild(ucss);
Advertisement
Add Comment
Please, Sign In to add comment