Skip to content

Instantly share code, notes, and snippets.

@rpetrich
Created October 12, 2017 17:48
Show Gist options
  • Save rpetrich/4fada5ef5369c6e4ad0034e535b870fa to your computer and use it in GitHub Desktop.
Save rpetrich/4fada5ef5369c6e4ad0034e535b870fa to your computer and use it in GitHub Desktop.
Kill JIRA Banner and Hover Indentation
// ==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