JIRA Issue Branch Name Generator

Generates a branch name based on the current JIRA issue view.

JIRA Issue Branch Name Generator란 무엇입니까?

JIRA Issue Branch Name Generator은(는) https://thinkotsan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates a branch name based on the current JIRA issue view."입니다.

확장 프로그램 스크린샷

screenshot

JIRA Issue Branch Name Generator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This chrome extension generates a branch name from a JIRA issue view and copies it to clipboard to be used as a name for your version control branches.                    

확장 프로그램 기본 정보

이름 JIRA Issue Branch Name Generator JIRA Issue Branch Name Generator
ID apgennglojmcjggiideonbmhnadicglo
공식 URL https://chromewebstore.google.com/detail/jira-issue-branch-name-ge/apgennglojmcjggiideonbmhnadicglo
설명 Generates a branch name based on the current JIRA issue view.
파일 크기 13.45 KB
설치 횟수 16
현재 버전 3
최근 업데이트 2021-04-26
출시 날짜 2019-04-30
개발자 https://thinkotsan.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Issue Branch Name Generator",
    "version": "3",
    "description": "Generates a branch name based on the current JIRA issue view.",
    "icons": {
        "128": "128.png",
        "64": "64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.atlassian.net\/*\/projects\/*\/issues\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "declarativeContent"
    ]
}