Jira Link and Search

Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.

What is Jira Link and Search?

Jira Link and Search is a Chrome extension developed by Nick Orlando, and its main feature is "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.".

Extension Screenshots

screenshot

Download Jira Link and Search Extension CRX File

Download Jira Link and Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to select any text in Chrome, and right-click to search for the selected text within an install of Atlassian JIRA.

Recent Changes:
0.2: NEW - This extension will automatically highlight Jira tickets (in the format ABC-123) and turn them directly into hyperlinks!

This extension is Open-Source (MIT License). Source code is available on GitHub.

Please submit any issues (and Pull Requests) via GitHub.                    

Extension Basic Information

Name Jira Link and Search Jira Link and Search
ID jlpbojfbbmodkbjhemkcmkhhlkpijhbi
Official URL https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi
Description Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
File Size 58.29 KB
Installation Count 57
Current Version 0.2.4
Last Updated 2018-01-28
Publish Date 2018-01-28
Rating 4.33/5 Total 3 Ratings
Developer Nick Orlando
Email [email protected]
Payment Type free
Extension Website https://github.com/NickMOrlando/JiraSearchTool
Help Page URL https://github.com/NickMOrlando/JiraSearchTool/issues
Privacy Policy Page URL https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Link and Search",
    "short_name": "Jira Link-Search",
    "description": "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.",
    "version": "0.2.4",
    "minimum_chrome_version": "38",
    "permissions": [
        "contextMenus",
        "tabs",
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "assets\/search.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "highlight.js",
                "activate-ga.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "ga.js",
        "background.html"
    ]
}