Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Что такое Bitbucket Conventional Comments?
Bitbucket Conventional Comments - это расширение Chrome, разработанное Sam Martin, и его основная функция - "Adds conventional comment shortcuts to the comment editor.".
Снимки экрана расширения
Скачать файл CRX расширения Bitbucket Conventional Comments
Скачайте файлы расширений Bitbucket Conventional Comments в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Save precious time typing out conventional comments with just the click of a button! Основная информация о расширении
| Название | |
| ID | ahbhljoncimmieljhlkkeifohkigiefa |
| Официальный URL | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
| Описание | Adds conventional comment shortcuts to the comment editor. |
| Размер файла | 293 KB |
| Количество установок | 148 |
| Текущая Версия | 2.1.0 |
| Последнее Обновление | 2023-09-01 |
| Дата публикации | 2021-07-14 |
| Рейтинг | 4.33/5 Всего 3 оценок |
| Разработчик | Sam Martin |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/smartinio/bitbucket-conventional-comments |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Bitbucket Conventional Comments",
"description": "Adds conventional comment shortcuts to the comment editor.",
"version": "2.1.0",
"content_scripts": [
{
"matches": [
"*:\/\/*\/**\/*\/pull-requests\/*"
],
"css": [
"src\/style.css"
],
"js": [
"src\/index.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/bitbucket.org\/**\/*\/pull-requests\/*"
],
"css": [
"src\/style.css"
],
"js": [
"src\/index.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"matches": [
"*:\/\/*\/*"
],
"resources": [
"src\/*"
]
}
],
"action": {
"default_popup": "src\/popup\/index.html",
"default_icon": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
},
"permissions": [
"clipboardRead",
"clipboardWrite",
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
]
} | |