GitHub to JIRA Links

This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.

What is GitHub to JIRA Links?

GitHub to JIRA Links is a Chrome extension developed by https://hacktoolkit.com, and its main feature is "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".

Extension Screenshots

screenshot

Download GitHub to JIRA Links Extension CRX File

Download GitHub to JIRA Links 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 detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.

Works on both GitHub Enterprise Cloud as well as public GitHub.com.                    

Extension Basic Information

Name GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
Official URL https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Description This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
File Size 9.72 KB
Installation Count 71
Current Version 1.2.1
Last Updated 2023-01-28
Publish Date 2017-06-22
Rating 5.00/5 Total 3 Ratings
Developer https://hacktoolkit.com
Email [email protected]
Payment Type free
Extension Website https://github.com/hacktoolkit/github-jira-chrome-extension
Help Page URL https://github.com/hacktoolkit/github-jira-chrome-extension
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub to JIRA Links",
    "version": "1.2.1",
    "description": "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.",
    "icons": {
        "16": "img\/64jira.png",
        "64": "img\/64jira.png",
        "128": "img\/64jira.png"
    },
    "action": {
        "default_icon": "img\/64jira.png",
        "default_popup": "src\/popup.html",
        "default_title": "GitHub to JIRA Links"
    },
    "author": "Jonathan Tsai (@jontsai)",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "src\/js\/github_jira.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "GitHub JIRA"
}