View difference between Paste ID: G5rWfh1M and 8Y8UkZyL
SHOW: | | - or go back to the newest paste.
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; }";
14+
ucss.innerHTML = ".content-main { float: left; } .dashboard { float: right; }";
15
16
document.head.appendChild(ucss);