Created
October 12, 2017 17:48
-
-
Save rpetrich/4fada5ef5369c6e4ad0034e535b870fa to your computer and use it in GitHub Desktop.
Kill JIRA Banner and Hover Indentation
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 No JIRA banner or Hover Indentation | |
// @namespace http://rpetri.ch/ | |
// @version 0.1 | |
// @description Remove JIRA announcement banners; Remove comment relayout on hover | |
// @author Ryan Petrich | |
// @match https://*.atlassian.net/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const style = document.createElement("style"); | |
style.innerText = "#announcement-banner { display: none!important } .issue-data-block:hover, .issue-data-block.focused { padding-left: 10px!important }"; | |
document.head.appendChild(style); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment