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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}