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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thinkotsan.com และคุณลักษณะหลักของมันคือ "Generates a branch name based on the current JIRA issue view."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JIRA Issue Branch Name Generator

ดาวน์โหลดไฟล์ส่วนขยาย JIRA Issue Branch Name Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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"
    ]
}