// ==UserScript== // @name Unpin Jira comment box // @namespace Violentmonkey Scripts // @match https://jira.*/* // @grant none // @version 1.1 // @author LeviOliveira // @description Unpins Jira's sticky comment box // @license MIT // @downloadURL none // ==/UserScript== // Just removes "sticky" from the classlist 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 });