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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hacktoolkit.com และคุณลักษณะหลักของมันคือ "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub to JIRA Links

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
}