Visual Studio PR Title Generator
Generate pull request titles in Visual Studio Online. Updates the PR title to "[source branch name] into [destination branch name]"
Что такое Visual Studio PR Title Generator?
Visual Studio PR Title Generator - это расширение Chrome, разработанное pilcher.c, и его основная функция - "Generate pull request titles in Visual Studio Online. Updates the PR title to "[source branch name] into [destination branch name]"".
Снимки экрана расширения
Скачать файл CRX расширения Visual Studio PR Title Generator
Скачайте файлы расширений Visual Studio PR Title Generator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Updates the Visual Studio Online pull request title to "[source branch name] into [destination branch name]" at the click of a button. This will keep your Visual Studio Online pull request titles consistent and let reviewers easily see the source and destination branch before opening the pull request.
Основная информация о расширении
Название | Visual Studio PR Title Generator |
ID | lbkfohchcccpbmgckjbcgcnlmohdieej |
Официальный URL | https://chromewebstore.google.com/detail/visual-studio-pr-title-ge/lbkfohchcccpbmgckjbcgcnlmohdieej |
Описание | Generate pull request titles in Visual Studio Online. Updates the PR title to "[source branch name] into [destination branch name]" |
Размер файла | 54.03 KB |
Количество установок | 38 |
Текущая Версия | 0.0.0.8 |
Последнее Обновление | 2022-09-14 |
Дата публикации | 2020-04-20 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | pilcher.c |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Visual Studio PR Title Generator", "short_name": "VS Title Gen", "version": "0.0.0.8", "description": "Generate pull request titles in Visual Studio Online. Updates the PR title to \"[source branch name] into [destination branch name]\"", "content_scripts": [ { "js": [ "libs\/jquery-3.4.1.min.js", "libs\/purl.js", "content.js" ], "matches": [ "https:\/\/*.visualstudio.com\/*", "https:\/\/dev.azure.com\/*" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |