Skip to content

Instantly share code, notes, and snippets.

@theissn
Last active July 4, 2018 10:16
Show Gist options
  • Save theissn/13415970ae8178614670175b7aa44083 to your computer and use it in GitHub Desktop.
Save theissn/13415970ae8178614670175b7aa44083 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Github Sidebar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match // ==UserScript==
// @name Github Sidebar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Theis
// @match https://github.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function flipDashboard() {
var dashboard = document.getElementsByClassName("dashboard")[0];
if (dashboard !== undefined) {
dashboard.appendChild(dashboard.children[0]);
}
}
flipDashboard();
})();
// @grant none
// ==/UserScript==
(function() {
'use strict';
function flipDashboard() {
var dashboard = document.getElementsByClassName("dashboard")[0];
if (dashboard !== undefined) {
dashboard.appendChild(dashboard.children[0]);
}
}
flipDashboard();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment