Open JIRA external links in a new tab

Open JIRA issues external links in a new tab or window.

Open JIRA external links in a new tab란 무엇입니까?

Open JIRA external links in a new tab은(는) nemnesic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open JIRA issues external links in a new tab or window."입니다.

확장 프로그램 스크린샷

screenshot

Open JIRA external links in a new tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Open Confluence (JIRA) external links in a new tab or window.
This extension will modify JIRA links to open links in a new tab. More details about the problem and why Confluence does not want to fix this: https://jira.atlassian.com/browse/CONF-11194                    

확장 프로그램 기본 정보

이름 Open JIRA external links in a new tab Open JIRA external links in a new tab
ID lpagenghjojnilgfenbacdhhbmmnafpk
공식 URL https://chromewebstore.google.com/detail/open-jira-external-links/lpagenghjojnilgfenbacdhhbmmnafpk
설명 Open JIRA issues external links in a new tab or window.
파일 크기 69.48 KB
설치 횟수 121
현재 버전 2.0
최근 업데이트 2020-11-14
출시 날짜 2014-12-16
평점 2.50/5 총 8 개의 평점
개발자 nemnesic
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nemnesic/jira-external-links
도움말 페이지 URL https://github.com/nemnesic/jira-external-links
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open JIRA external links in a new tab",
    "version": "2.0",
    "description": "Open JIRA issues external links in a new tab or window.",
    "browser_action": {
        "name": "Open JIRA issues external links in a new tab or window.",
        "default_icon": "jira-icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-1.11.1.min.js",
                "jira_links.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}