Making Jira better

Our team found that it was not so convenient to have avatars for assigned developers only for Plan mode and not for Work (Rapid board of Jira Agile).

I’d create a question about that issue on Atlassian Answers, but unfortunately the answer was “Unfortunately this is not possible due to the way User Stories are displayed in the system.

I had a thought “why not to tweak it with userscript?” and solution came after:

jira-agile-avatars.user.js

You are welcome with criticism and suggestions.

 

New Chrome console features

You could set the focus on element without pointing it via inspector, there is “inspect” method in console now:

one more helper-method in console is “copy” – to stringify and copy to clipboard:

after such operation you will have document.body element converted into string in your clipboard.

Some inspiration for start playing:

[javascript]
inspect(document.body.firstChild)
inspect(document.querySelector(‘div’))
inspect(document.querySelector(‘.ng-scope’))
inspect($1)

copy($0)
copy(document.querySelectorAll(‘div’)[0])
copy(document.cookie)
[/javascript]