GitHub Points
Add storypoints feature to GitHub
Что такое GitHub Points?
GitHub Points - это расширение Chrome, разработанное mazrica inc., и его основная функция - "Add storypoints feature to GitHub".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Points
Скачайте файлы расширений GitHub Points в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Add storypoints feature to GitHub.
Features:
- No GitHub access tokens / authentication required
- Add points to new issue/PR
- Check points in issue/PR page
- Quickly update points by editing the title
- Show total points in issues/PR tab, filters and searches are also supported
- Milestones, Projects are also supported
- Easily hide badges and summaries from popup or keyboard shortcut "ctrl + option(alt) + p" Основная информация о расширении
| Название | |
| ID | gblajdemjpibbajhifkbbngkllejempi |
| Официальный URL | https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi |
| Описание | Add storypoints feature to GitHub |
| Размер файла | 31.53 KB |
| Количество установок | 44 |
| Текущая Версия | 0.1.1 |
| Последнее Обновление | 2018-07-05 |
| Дата публикации | 2018-07-05 |
| Разработчик | mazrica inc. |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/mazrica/chrome-github-points |
| URL страницы помощи | https://github.com/mazrica/chrome-github-points/issues |
| URL страницы политики конфиденциальности | https://mazrica.com/privacy-policy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitHub Points",
"short_name": "GitHub Points",
"description": "Add storypoints feature to GitHub",
"version": "0.1.1",
"author": "nanopx",
"browser_action": {
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' https:\/\/buttons.github.io; object-src 'self'",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"include_globs": [
"*"
],
"js": [
"scripts\/content-script.bundle.js"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "github-points-icon-16.png",
"32": "github-points-icon-32.png",
"24": "github-points-icon-24.png",
"48": "github-points-icon-48.png",
"128": "github-points-icon-128.png"
},
"permissions": [
"storage"
]
} | |