GitHub Story Points
Chrome extension to see story points in GitHub projects
Что такое GitHub Story Points?
GitHub Story Points - это расширение Chrome, разработанное banyan, и его основная функция - "Chrome extension to see story points in GitHub projects".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Story Points
Скачайте файлы расширений GitHub Story Points в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
https://github.com/banyan/github-story-points Основная информация о расширении
| Название | |
| ID | fdhfdpafombnahpjjjcfopmehfofbdko |
| Официальный URL | https://chromewebstore.google.com/detail/github-story-points/fdhfdpafombnahpjjjcfopmehfofbdko |
| Описание | Chrome extension to see story points in GitHub projects |
| Размер файла | 525 KB |
| Количество установок | 593 |
| Текущая Версия | 0.3.0 |
| Последнее Обновление | 2020-08-17 |
| Дата публикации | 2019-08-09 |
| Рейтинг | 3.00/5 Всего 1 оценок |
| Разработчик | banyan |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/banyan/github-story-points |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitHub Story Points",
"description": "Chrome extension to see story points in GitHub projects",
"short_name": "GitHub Story Points",
"version": "0.3.0",
"author": "Kohei Hasegawa",
"homepage_url": "https:\/\/github.com\/banyan\/github-story-points",
"icons": {
"16": "assets\/images\/icon.png",
"48": "assets\/images\/icon.png",
"128": "assets\/images\/icon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"contextMenus",
"activeTab"
],
"optional_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"dist\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/*\/projects\/*"
],
"js": [
"dist\/story-points.js"
]
}
]
} | |