GitHub to JIRA Links

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

什麼是GitHub to JIRA Links?

GitHub to JIRA Links是由https://hacktoolkit.com開發的Chrome擴展程式,該擴展的主要功能是“This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.”。

擴展截圖

screenshot

下載GitHub to JIRA Links擴展crx文件

下載GitHub to JIRA Links擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
官方網址 https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
簡介 This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
檔案大小 9.72 KB
安裝次數 71
目前版本 1.2.1
更新時間 2023-01-28
上架時間 2017-06-22
評分 5.00/5 共 3 次評分
開發者 https://hacktoolkit.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/hacktoolkit/github-jira-chrome-extension
說明頁面URL https://github.com/hacktoolkit/github-jira-chrome-extension
支援的語言 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"
}