GitHub to JIRA Links

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

Hvad er GitHub to JIRA Links?

GitHub to JIRA Links er en Chrome-udvidelse udviklet af https://hacktoolkit.com, og dens hovedfunktion er "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".

Udvidelsesskærmbilleder

screenshot

Download GitHub to JIRA Links-udvidelses-CRX-fil

Download GitHub to JIRA Links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
Officiel URL https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Beskrivelse This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Filstørrelse 9.72 KB
Antal Installationer 71
Nuværende Version 1.2.1
Senest Opdateret 2023-01-28
Udgivelsesdato 2017-06-22
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler https://hacktoolkit.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/hacktoolkit/github-jira-chrome-extension
Hjælpeside-URL https://github.com/hacktoolkit/github-jira-chrome-extension
Understøttede Sprog 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"
}