One of the small things that makes it easier to jump around JIRA for me are two bookmarks that we setup in our office. This should work for any instance, just save the following as your bookmark URL. Be sure to update [YourSubDomain] to match your environment.
JIRA Issue Finder
This will allow you to enter in an issue key and jump straight to that issue in a new tab. This is not case sensitive.
javascript: var dest = prompt("Issue ID?"); window.open("https://[YourSubDomain].atlassian.net/browse/" + dest, '_blank');
JIRA Project Versioning
This will take you straight to the version page of a project for quick updates/releases. This IS case sensitive. If you do not use uppercase for the Project Key it will fail.
javascript: var dest = prompt("Project Abbreviation?"); window.open("https://[YourSubDomain].atlassian.net/plugins/servlet/project-config/" + dest + "/administer-versions?status=unreleased", '_blank');
There is HTML validation on the post, so it changed "javascript:" to "javascript:" Be sure to change that back when you copy and paste or your bookmarks won't work. Hope this helps someone else out!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.