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 là gì?

GitHub to JIRA Links là một tiện ích mở rộng Chrome được phát triển bởi https://hacktoolkit.com, và tính năng chính của nó là "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub to JIRA Links

Tải xuống các tệp mở rộng GitHub to JIRA Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub to JIRA Links GitHub to JIRA Links
ID jcioabgeaepidgkoibflheijdcignhcl
URL Chính Thức https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl
Mô tả This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
Kích Thước Tệp 9.72 KB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2023-01-28
Ngày Phát Hành 2017-06-22
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://hacktoolkit.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hacktoolkit/github-jira-chrome-extension
URL Trang Trợ Giúp https://github.com/hacktoolkit/github-jira-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
}