Skip to content

Instantly share code, notes, and snippets.

@un-def
Last active January 29, 2019 09:47
Show Gist options
  • Save un-def/226213741d4f5c7fdb826c928b96178b to your computer and use it in GitHub Desktop.
Save un-def/226213741d4f5c7fdb826c928b96178b to your computer and use it in GitHub Desktop.
Jira sub-tasks keys userscript
// ==UserScript==
// @name Jira sub-tasks keys
// @version 1
// @grant none
// @include http://*.atlassian.net/browse/*
// @include https://*.atlassian.net/browse/*
// ==/UserScript==
document.querySelectorAll('#issuetable tr.issuerow').forEach(el => el.insertBefore(document.createElement('td').appendChild(document.createTextNode(el.dataset.issuekey)).parentNode, el.firstChild))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment