// ==UserScript== // @name Retina Twitter // @namespace http://google.com // @version 0.2 // @description This is a bastardizatoin of Frederick888's Wider Twitter script designed to make maximum use of a retina Macbook 15 inch display. // @include *://twitter.com/* // @copyright Nobody // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js // @downloadURL none // ==/UserScript== // CSS CSSElement = ''; $('head').append(CSSElement); // Move the right-dashboard function change() { var parent = $('.dashboard-right'); var users = $('.dashboard-right>div:first-child'); var footer = $('.dashboard-right>div:last-child'); $('.dashboard-left').append(users); $('.dashboard-left').append(footer); parent.remove(); } var oldLoc = ''; change(); setInterval(function() { if(location.href != oldLoc) { oldLoc = location.href; change(); } }, 100);