Last active
July 8, 2022 15:41
-
-
Save rogerhub/503b6a44ca43023ae495 to your computer and use it in GitHub Desktop.
UI enhancements for Bitbucket.org
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What's it do?