Unpin Jira comment box

Unpins Jira's sticky comment box, added on version

As of 2025-02-19. See the latest version.

// ==UserScript==
// @name		    Unpin Jira comment box
// @namespace	    Violentmonkey Scripts
// @match		    https://jira.*/*
// @grant		    none
// @version		    1.0
// @author	   	    LeviOliveira
// @description     Unpins Jira's sticky comment box, added on version
// @license         MIT
// ==/UserScript==
 
// Remove canned comment picker div wherever and whenever it appears
let observer = new MutationObserver(function(mutation) {
	document.getElementById("addcomment").classList.remove("sticky"); 
});
 
observer.observe(document.documentElement || document.body, {
	childList: true,
	subtree: true
});