Skip to content

Instantly share code, notes, and snippets.

@rogerhub
Last active July 8, 2022 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerhub/503b6a44ca43023ae495 to your computer and use it in GitHub Desktop.
Save rogerhub/503b6a44ca43023ae495 to your computer and use it in GitHub Desktop.
UI enhancements for Bitbucket.org
// ==UserScript==
// @name Bitbucket UI Enhancement
// @namespace http://rogerhub.com/
// @version 0.1
// @match https://bitbucket.org
// @run-at document-end
// ==/UserScript==
var style_element = document.createElement('style');
style_element.setAttribute('type', 'text/css');
style_element.innerHTML = ".dashboard-item-container { display: none; } #dashboard-overview .sidebar { width: 50%; } #dashboard-header { display: none; }";
document.head.appendChild(style_element);
@rpdelaney
Copy link

What's it do?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment