Last active
January 29, 2019 09:47
-
-
Save un-def/226213741d4f5c7fdb826c928b96178b to your computer and use it in GitHub Desktop.
Jira sub-tasks keys userscript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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