Links for GitHub & Jira

Chrome extension that adds links to JIRA issues from GitHub issues and PRs

什麼是Links for GitHub & Jira?

Links for GitHub & Jira是由https://samlanning.com開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that adds links to JIRA issues from GitHub issues and PRs”。

擴展截圖

screenshot
screenshot
screenshot

下載Links for GitHub & Jira擴展crx文件

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

擴展使用說明

                        Chrome extension that adds links to JIRA issues from GitHub issues and PRs

When you view lists of issues or pull requests on GitHub (either GitHub.com, or GitHub enterprise), the extension will use the API of the JIRA installations of your choosing to see if there are any JIRA Issues that mention each GitHub Issue or PR. It will then insert these issues, along with their current status, right into the GitHub UI alongside the labels.

* No JIRA plugins necessary
* Authentication is done simply by acting as the user you are logged in as on JIRA.
* Minimal permissions required, only needs access to websites you configure.
* Specify exactly which GitHub repositories you want connected to which JIRA installations.

This project is open source, and you can find it here: https://github.com/samlanning/github-jira-links                    

擴展基本資訊

名稱 Links for GitHub & Jira Links for GitHub & Jira
ID mcedjinjmcpfknajacebeokngmnlphik
官方網址 https://chromewebstore.google.com/detail/links-for-github-jira/mcedjinjmcpfknajacebeokngmnlphik
簡介 Chrome extension that adds links to JIRA issues from GitHub issues and PRs
檔案大小 311 KB
安裝次數 21
目前版本 0.0.4
更新時間 2019-06-12
上架時間 2019-06-11
開發者 https://samlanning.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/samlanning/github-jira-links
說明頁面URL https://github.com/samlanning/github-jira-links/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Links for GitHub & Jira",
    "description": "Chrome extension that adds links to JIRA issues from GitHub issues and PRs",
    "version": "0.0.4",
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Configure Links for GitHub & Jira"
    },
    "options_page": "options.html"
}