Branch Name Generator
Branch Name Generator
What is Branch Name Generator?
Branch Name Generator is a Chrome extension developed by klajdipaja, and its main feature is "Branch Name Generator".
Extension Screenshots
Download Branch Name Generator Extension CRX File
Download Branch Name Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A helper to that generates branche name for Atlassian or Azure DevOps ticket. As a developer using the git-flow proccess you often need to create branches that have names deriving from the project code, ticket number and title. That is what this extension does, you can fill the form with that data or load all the data from the open Jira/Azure Devops ticket tab using web scrapping, and when you click Generate Branch Name a branch name will be generated that you can copy and use it for your git-flow proccess. Example: Project Code: OGM Ticket number: 1581 Title: Hibernate-OGM Neo4j uses an outdated Bolt driver for remote connections. Generated Branch Name: feature/OGM-1581_HibernateOGM_Neo4j_uses_an_outdated_Bolt_driver_for_remote_connections
Extension Basic Information
Name | Branch Name Generator |
ID | ponaigcolfgmjneppjpenfobcnkecmao |
Official URL | https://chromewebstore.google.com/detail/branch-name-generator/ponaigcolfgmjneppjpenfobcnkecmao |
Description | Branch Name Generator |
File Size | 925 KB |
Installation Count | 24 |
Current Version | 1.0 |
Last Updated | 2021-10-12 |
Publish Date | 2021-10-12 |
Developer | klajdipaja |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Branch Name Generator", "description": "Branch Name Generator", "version": "1.0", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Open" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/static\/js\/content.js" ] } ], "permissions": [ "activeTab" ], "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png", "512": "logo512.png" } } |