Github Pull Request Counter
A chrome extension to remove mental load when working with pull requests.
Что такое Github Pull Request Counter?
Github Pull Request Counter - это расширение Chrome, разработанное Renuo, и его основная функция - "A chrome extension to remove mental load when working with pull requests.".
Снимки экрана расширения
Скачать файл CRX расширения Github Pull Request Counter
Скачайте файлы расширений Github Pull Request Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Maintains a list of GitHub pull request which need action, such as review or merging. This removes mental load and decreases the amount of time between reviews. Основная информация о расширении
| Название | |
| ID | eeejbcmnmgogpkgeinlbchoafjjbegmi |
| Официальный URL | https://chromewebstore.google.com/detail/github-pull-request-count/eeejbcmnmgogpkgeinlbchoafjjbegmi |
| Описание | A chrome extension to remove mental load when working with pull requests. |
| Размер файла | 68.37 KB |
| Количество установок | 81 |
| Текущая Версия | 1.0.10 |
| Последнее Обновление | 2023-06-24 |
| Дата публикации | 2021-08-02 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | Renuo |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/renuo/github-pull-request-counter |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"author": "Renuo AG",
"name": "Github Pull Request Counter",
"description": "A chrome extension to remove mental load when working with pull requests.",
"version": "1.0.10",
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"alarms",
"storage"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |