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
screenshot
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
Электронная почта otsanllc@gmail.com
Тип оплаты 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"
    ]
}