Jira Gitlab integration - New branch button

Adds ability to create new branch on GitLab directly from the Jira issue overview by clicking a button

Jira Gitlab integration - New branch buttonคืออะไร?

Jira Gitlab integration - New branch button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ktothdev และคุณลักษณะหลักของมันคือ "Adds ability to create new branch on GitLab directly from the Jira issue overview by clicking a button"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jira Gitlab integration - New branch button

ดาวน์โหลดไฟล์ส่วนขยาย Jira Gitlab integration - New branch button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension adds a new Create branch button to the Jira Issue overview control buttons under the issue title. If you wish to open new branches directly from Jira for your ticket you've just started working on, this extension could help.

The extension makes it easier to create new branches on GitLab directly from Jira. Adds a new button to the issue overview page. After clicking this button a modal appears. On this modal you can specifiy the desired name for the new branch and the refence where it will be created from. You can also always notice the GitLab project where it will be created under. Currently only one project/repo supported. For perfoming the create branch action the extension uses the GitLab API endpoints. If the branch created successfully then a success notif should popup. If something went wrong you will see browser alerts.

To reveal the extension settings simply click on the extension icon in the extensions toolbar. On the popup you have to set the access token and the project id from GitLab.

How to configure:
1. Generate access token
In order to get access to the GitLab APIs you must create an access token first in your profile with allowing the api usage (only). Then you should copy the generated key.
2. Copy the project Id
The project id can be found on the project`s overview page on GitLab.
3. Save 
Don't foget to click the ´Save´ button. After you have saved the values the extension is ready to use.

Check the extensions home page for further info, feature requests or bug reports.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Jira Gitlab integration - New branch button Jira Gitlab integration - New branch button
ID ccoandmmhdbepejjfhlimekeeamdkgkj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/jira-gitlab-integration-n/ccoandmmhdbepejjfhlimekeeamdkgkj
คำอธิบาย Adds ability to create new branch on GitLab directly from the Jira issue overview by clicking a button
ขนาดไฟล์ 125 KB
จำนวนการติดตั้ง 17
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2020-08-04
วันที่เผยแพร่ 2020-08-04
ผู้พัฒนา ktothdev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tkrisztian95/jira-to-gitlab-cloud-create-new-branch-one-click-chromeExt/blob/master/readme.md
URL หน้าช่วยเหลือ https://github.com/tkrisztian95/jira-to-gitlab-cloud-create-new-branch-one-click-chromeExt/blob/master/readme.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Gitlab integration - New branch button",
    "author": "T\u00f3th Kriszti\u00e1n Gyula",
    "version": "0.0.1",
    "description": "Adds ability to create new branch on GitLab directly from the Jira issue overview by clicking a button",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "css": [
                "src\/css\/popup.css"
            ],
            "js": [
                "libs\/jquery-3.4.1.min.js",
                "src\/js\/content_script.js"
            ],
            "matches": [
                "https:\/\/*.atlassian.net\/browse\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/js\/*",
        "src\/html\/*",
        "libs\/*"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "src\/html\/popup.html"
    }
}