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 |
| 电子邮箱 | [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"
]
} | |