Jira Link and Search
Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.
Jira Link and Searchとは何ですか?
Jira Link and SearchはNick Orlandoによって開発されたChromeの拡張機能で、その主な機能は「Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.」です。
拡張機能のスクリーンショット
Jira Link and Search拡張機能のCRXファイルをダウンロード
Jira Link and Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to select any text in Chrome, and right-click to search for the selected text within an install of Atlassian JIRA.
Recent Changes:
0.2: NEW - This extension will automatically highlight Jira tickets (in the format ABC-123) and turn them directly into hyperlinks!
This extension is Open-Source (MIT License). Source code is available on GitHub.
Please submit any issues (and Pull Requests) via GitHub. 拡張機能の基本情報
| 名前 | |
| ID | jlpbojfbbmodkbjhemkcmkhhlkpijhbi |
| 公式URL | https://chrome.google.com/webstore/detail/jira-link-and-search/jlpbojfbbmodkbjhemkcmkhhlkpijhbi |
| 説明 | Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira. |
| ファイルサイズ | 58.29 KB |
| インストール数 | 57 |
| 現在のバージョン | 0.2.4 |
| 最終更新日 | 2018-01-28 |
| 公開日 | 2018-01-28 |
| 評価 | 4.33/5 合計 3 レビュー |
| 開発者 | Nick Orlando |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/NickMOrlando/JiraSearchTool |
| ヘルプページのURL | https://github.com/NickMOrlando/JiraSearchTool/issues |
| プライバシーポリシーページのURL | https://github.com/NickMOrlando/JiraSearchTool/blob/master/Privacy.md |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jira Link and Search",
"short_name": "Jira Link-Search",
"description": "Turns JIRA numbers into hyperlinks, and provides a right-click menu to search for any highlighted text within Atlassian Jira.",
"version": "0.2.4",
"minimum_chrome_version": "38",
"permissions": [
"contextMenus",
"tabs",
"https:\/\/www.google-analytics.com\/",
"storage"
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"icons": {
"16": "assets\/search.png"
},
"background": {
"page": "background.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"highlight.js",
"activate-ga.js"
]
}
],
"web_accessible_resources": [
"ga.js",
"background.html"
]
} | |