Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add JIRA Quick Search to Chrome Omnibox

I would like to search JIRA's "Quick Search" from Chrome's Omnibox. This is not the same as this Chrome Omnibox search string:

https://myserver/jira/browse/%s 

That string will only open perfectly (not partially) matched JIRA IDs. A Quick Search will automatically open the issue that uniquely matches the search criteria--even if the search criteria is a partial match. For example, consider a system where there is only one JIRA issue that contains -77, and that JIRA issue is CLS-77. Using Quick Search (at the upper-right corner of the JIRA site) to search for "77" will open issue CLS-77 automatically. Performing the same search through Chrome Omnibox custom search string I listed earlier will not launch CLS-77 when searching for 77.

like image 376
CLSheppard Avatar asked Jun 21 '13 16:06

CLSheppard


People also ask

How to Add jira search in Chrome?

To search for Jira issues directly from the Google Chrome search bar, you can add Jira as a custom search engine: Go to Settings > Manage Search Engines > Other Search Engines > Add.

Where is the Omnibar in Chrome?

The bar at the top of Chrome is called the omnibox (or Omnibar). It combines your regular address bar and the Google search box into one area in your browser. It's a powerful tool that can be used in a variety of ways. These tricks can be done on computers, iPads and other personal devices.

Does JIRA work in Chrome?

JIRA assistant for Google Chrome is a useful extension which let you to manage your tickets right in your browser with just one click. It is easy to install and configure. Just install the extension in you Google Chrome browser and you will see the options page where you should configure you JIRA server connection.

How do I access Jira browser?

Edit Connection Settings In the case, open the browser and log into you JIRA account. Press 'Connect' button in the browser when you are done. In the case, open the browser log out and then log into a different JIRA account. Press 'Connect' button in the browser when you are done.


1 Answers

In searching for the same answer, I discovered a partial solution. This solution requires that you use the keyword searching feature of the omnibox, so searching for "ISSUE-123" will not work but "jira ISSUE-123" will. It also supports quick-search text searching for example "jira some search string."

In chrome, follow these steps to configure:

  1. Open chrome's settings and click Manage Search Engines in the search section.
  2. Scroll to the bottom and enter the following information:
    • Search engine name: JIRA (or some description about which instance of jira like "Apache JIRA")
    • Keyword: jira (or something simple to remember on the omnibox, could be the base URL of your jira instance)
    • URL: https://jira.example.com/jira/secure/QuickSearch.jspa?searchString=%s (obviously, replace the jira.example.com with the host name of your jira instance)
  3. Click done

To use:

  1. In the omnibox type jira (or your keyword you configured above) followed by a tab or space
  2. Enter your quick-search term which could be an issue key, free-form text or project text

Examples of what to type in the OmniBox:

  • An issue key: jira WEB-123
  • Free-form text: jira Logo change
  • Project-specific search: jira WEB logo
like image 199
Patrick Shafer Avatar answered Oct 06 '22 15:10

Patrick Shafer