// ==UserScript== // @name Jira Condensed // @namespace http://tampermonkey.net/ // @version 0.2.1 // @author Bartosz Petrynski // @description Makes Jira board more condensed // @include https://*.atlassian.net/jira/software/c/projects/* // @icon https://www.google.com/s2/favicons?domain=bitbucket.org // @grant none // @downloadURL none // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('#ghx-controls { height: 40px !important; }'); addGlobalStyle('#ghx-header {margin-bottom: 0px !important;}'); addGlobalStyle('.adg3 #ghx-header {padding: 0px 0 0px 0 !important;}'); addGlobalStyle('.jkaXwY {margin: 0px 0px 0px 36px !important;}'); addGlobalStyle('.adg3 .ghx-column-headers .ghx-column {padding: 0px 10px !important;}'); addGlobalStyle('#ghx-swimlane-header-stalker {display: none !important;}'); // addGlobalStyle('#jira-frontend > div > div > div.css-8rawpz{ --topNavigationHeight: 40px !important;}'); // addGlobalStyle('#ak-jira-navigation {height: 40px !important;}');