Jira External Links Opener

Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.

Jira External Links Opener란 무엇입니까?

Jira External Links Opener은(는) Pendexgabo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation."입니다.

Jira External Links Opener 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Minimal Extension that help Jira Cloud users to have external links opened another tab to prevent loosing the current Jira navigation.

Versions

0.0.3
  - skip urls in code blocks

0.0.2
  - on document ready event.

0.0.1
 - just the basics.


Development

Please feel free to download the code from https://github.com/pendexgabo/jira-external-links and post any bug or feature request over there.                    

확장 프로그램 기본 정보

이름 Jira External Links Opener Jira External Links Opener
ID lkgfimolfmjbkmjnomiggkcojphppcik
공식 URL https://chromewebstore.google.com/detail/jira-external-links-opene/lkgfimolfmjbkmjnomiggkcojphppcik
설명 Minimal Extension that help Jira Cloud users to have external links opened another tab to don't loose the current Jira navigation.
파일 크기 40.06 KB
설치 횟수 17
현재 버전 0.0.3
최근 업데이트 2016-12-19
출시 날짜 2016-12-19
개발자 Pendexgabo
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira External Links Opener",
    "version": "0.0.3",
    "description": "Minimal Extension that help Jira Cloud users to have  external links opened another tab to don't loose the current Jira navigation.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/arrive.min.js",
                "js\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*.atlassian.net\/*"
    ],
    "manifest_version": 2
}