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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة JIRA Issue Branch Name Generator
قم بتنزيل ملفات الامتداد JIRA Issue Branch Name Generator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" ] } |