Skip to content

Instantly share code, notes, and snippets.

@petrleocompel
Created June 23, 2019 14:09
Show Gist options
  • Save petrleocompel/d93f44c2f2905a165ef8fa93c61c2bfa to your computer and use it in GitHub Desktop.
Save petrleocompel/d93f44c2f2905a165ef8fa93c61c2bfa to your computer and use it in GitHub Desktop.
jira-filter-my-subtasks
for(var row of document.getElementById("issuetable").children.item(0).children) {
if(row.children.item(4).textContent.trim().indexOf("Compel Petr") === -1) {
row.classList.add("hidden")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment