GitHub to JIRA Links

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

Co je GitHub to JIRA Links?

GitHub to JIRA Links je rozšíření Chrome vyvinuté https://hacktoolkit.com, a jeho hlavní funkcí je „This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub to JIRA Links

Stáhněte si soubory rozšíření GitHub to JIRA Links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
Oficiální URL https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Popis This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Velikost souboru 9.72 KB
Počet instalací 71
Aktuální Verze 1.2.1
Poslední Aktualizace 2023-01-28
Datum Vydání 2017-06-22
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://hacktoolkit.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/hacktoolkit/github-jira-chrome-extension
URL Stránky Nápovědy https://github.com/hacktoolkit/github-jira-chrome-extension
Podporované Jazyky 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"
}