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