GitHub to JIRA Links
This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.
什么是GitHub to JIRA Links?
GitHub to JIRA Links是由https://hacktoolkit.com开发的Chrome扩展程序,该扩展的主要功能是“This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.”。
扩展截图
下载GitHub to JIRA Links扩展crx文件
下载GitHub to JIRA Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks. Works on both GitHub Enterprise Cloud as well as public GitHub.com.
扩展基本信息
名称 | GitHub to JIRA Links |
ID | jcioabgeaepidgkoibflheijdcignhcl |
官方URL | https://chromewebstore.google.com/detail/github-to-jira-links/jcioabgeaepidgkoibflheijdcignhcl |
简介 | This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks. |
文件大小 | 9.72 KB |
安装次数 | 71 |
当前版本 | 1.2.1 |
更新时间 | 2023-01-28 |
上架时间 | 2017-06-22 |
评分 | 5.00/5 共3次评分 |
开发者 | https://hacktoolkit.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/hacktoolkit/github-jira-chrome-extension |
帮助页面URL | https://github.com/hacktoolkit/github-jira-chrome-extension |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GitHub to JIRA Links", "version": "1.2.1", "description": "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.", "icons": { "16": "img\/64jira.png", "64": "img\/64jira.png", "128": "img\/64jira.png" }, "action": { "default_icon": "img\/64jira.png", "default_popup": "src\/popup.html", "default_title": "GitHub to JIRA Links" }, "author": "Jonathan Tsai (@jontsai)", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/*\/*" ], "css": [], "js": [ "src\/js\/github_jira.js" ] } ], "options_ui": { "page": "src\/options.html" }, "permissions": [ "storage" ], "short_name": "GitHub JIRA" } |