GitHub to JIRA Links

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

Apa itu GitHub to JIRA Links?

GitHub to JIRA Links adalah ekstensi Chrome yang dikembangkan oleh https://hacktoolkit.com, dan fitur utamanya adalah "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GitHub to JIRA Links

Unduh file ekstensi GitHub to JIRA Links dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
URL Resmi https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Deskripsi This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Ukuran File 9.72 KB
Jumlah Instalasi 71
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2023-01-28
Tanggal Publikasi 2017-06-22
Penilaian 5.00/5 Total 3 Penilaian
Pengembang https://hacktoolkit.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/hacktoolkit/github-jira-chrome-extension
URL Halaman Bantuan https://github.com/hacktoolkit/github-jira-chrome-extension
Bahasa yang Didukung 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"
}