Skip to content

Instantly share code, notes, and snippets.

@AlbinoDrought
Created August 9, 2017 19:49
Show Gist options
  • Save AlbinoDrought/5d92c3b68120fdd3eef484df0424f114 to your computer and use it in GitHub Desktop.
Save AlbinoDrought/5d92c3b68120fdd3eef484df0424f114 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name New Bitbucket Eyebleach
// @namespace http://minge.party/
// @version 0.1
// @description Changes the color of the bitbucket sidebar to the old one.
// @author AlbinoDrought
// @match *://bitbucket.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var selectors = [
'#adg3-navigation > div > div:first > div > div:first > div',
'#adg3-navigation > div > div:first > div > div:nth-child(2) > div',
];
for (var i = 0; i < selectors.length; i++) {
$(selectors[i]).css('background-color', '#205081');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment