Github dashboard sidebar right

Github dashboard UI sidebar right

As of 2018-05-18. See the latest version.

// ==UserScript==
// @name     				Github dashboard sidebar right
// @author          a-wing
// @version  				1
// @grant    				none
// @include         https://github.com/*
// @namespace https://gf.zukizuki.org/users/186363
// @description Github dashboard UI sidebar right
// ==/UserScript==

(function () {
  var element = document.getElementsByClassName("dashboard-sidebar");
    if(element[0] !== undefined) {
        element[0].style.cssFloat= "right";
    }
})()