- Customize User Interface – Script Fragment using ScriptRunner
- Monitor / Interact with your Jira / Confluence Application
- Open Source Automate the Atlassian Command Line on Github – Helps with
- Monitoring Jira Mail Queue & LDAP Sync Status
- To have different Look & Feel for your Test Confluence Wiki Spaces.
- Monitor Jira Mail Queue using REST API
- REST API Client – Postman
- Avoid REST APIs – Use Python JIRA Client Library
- Development made easy – JupyterLab
- See only things that matter – hide all unwanted issue types during Workflow migration, run following script from console!
table = $("#workflow-mapping-table")
tbodies = table.find('tbody')
for (i = 0; i < tbodies.length; i++) {
img_element = $(tbodies[i]).find('img:first-of-type')
img_text = img_element.attr('alt')
span_element = $(tbodies[i]).find('span:first-of-type')
issue_count_for_this_issue_type = parseInt(span_element[0].innerText.trim())
if (issue_count_for_this_issue_type == 0){
$(tbodies[i]).hide()
}else{
console.log( img_text, issue_count_for_this_issue_type)
}
}