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
公式URL 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
Eメール [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"
}