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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |