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."입니다.

확장 프로그램 스크린샷

screenshot

Jira Link and Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Jira Link and Search Jira Link and Search
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"
    ]
}