Skip to content

Instantly share code, notes, and snippets.

@chemmi
Last active January 26, 2026 16:32
Show Gist options
  • Select an option

  • Save chemmi/ee7042f603f75e9816d74a4c9308c2ad to your computer and use it in GitHub Desktop.

Select an option

Save chemmi/ee7042f603f75e9816d74a4c9308c2ad to your computer and use it in GitHub Desktop.
This simple js bookmark lets you hide SmartChecklist changes in Jira History, see also https://www.freecodecamp.org/news/what-are-bookmarklets/J
# Chrome
javascript:(function(){
var historyDivs = window.document.querySelectorAll("div[data-testid='issue-history.ui.history-items.generic-history-item.history-item']");
historyDivs.forEach(function(historyItem){
if(historyItem.innerHTML.includes("Checklist"))
{historyItem.style.display = 'none';}})
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment