Jira Task To Branch Name
Transform jira id + title to git branch name
Qu'est-ce que Jira Task To Branch Name ?
Jira Task To Branch Name est une extension Chrome développée par unduine, et sa fonction principale est "Transform jira id + title to git branch name".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jira Task To Branch Name
Téléchargez les fichiers d'extension Jira Task To Branch Name au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
If you faced with problem on your work with integration Jira to git - welcome! This extension will help you with it, you can copy your jira task name to git branch. For example - Task with Id - "TASK-11" and name "remove-button-from-home-page" will transform to string "TASK-11-remove-button-from-home-page" Hope it will help someone :)
Informations de Base sur l'Extension
Nom | Jira Task To Branch Name |
ID | bjblobcihloahnigngcmplnjjkmjlgkf |
URL Officiel | https://chromewebstore.google.com/detail/jira-task-to-branch-name/bjblobcihloahnigngcmplnjjkmjlgkf |
Description | Transform jira id + title to git branch name |
Taille du Fichier | 41.56 KB |
Nombre d'Installations | 33 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-08-31 |
Date de Publication | 2021-08-30 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | unduine |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jira Task To Branch Name", "version": "1.0", "author": "Maxim Topalov", "description": "Transform jira id + title to git branch name", "manifest_version": 2, "browser_action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Jira Task To Branch Name" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "clipboardWrite", "https:\/\/*.atlassian.net\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "lodash.min.js", "index.js" ] } ] } |