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
电子邮箱 [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"
}