Links for GitHub & Jira
Chrome extension that adds links to JIRA issues from GitHub issues and PRs
Links for GitHub & Jira là gì?
Links for GitHub & Jira là một tiện ích mở rộng Chrome được phát triển bởi https://samlanning.com, và tính năng chính của nó là "Chrome extension that adds links to JIRA issues from GitHub issues and PRs".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Links for GitHub & Jira
Tải xuống các tệp mở rộng Links for GitHub & Jira 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Links for GitHub & Jira |
ID | mcedjinjmcpfknajacebeokngmnlphik |
URL Chính Thức | https://chromewebstore.google.com/detail/links-for-github-jira/mcedjinjmcpfknajacebeokngmnlphik |
Mô tả | Chrome extension that adds links to JIRA issues from GitHub issues and PRs |
Kích Thước Tệp | 311 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2019-06-12 |
Ngày Phát Hành | 2019-06-11 |
Nhà Phát Triển | https://samlanning.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/samlanning/github-jira-links |
URL Trang Trợ Giúp | https://github.com/samlanning/github-jira-links/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |