Github quarterly contributions
Adds a quarterly stats button on a user's landing page
Что такое Github quarterly contributions?
Github quarterly contributions - это расширение Chrome, разработанное Eric Bidelman, и его основная функция - "Adds a quarterly stats button on a user's landing page".
Снимки экрана расширения
Скачать файл CRX расширения Github quarterly contributions
Скачайте файлы расширений Github quarterly contributions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Adds a "Add previous quarter" button to a user's Github landing page (see screenshot). Pressing this button fetches the last quarter worth of commits, prs, and issues for the user. Subsequent presses goes back additional quarters.
Note: this will include private commits/prs/issues if you are the current logged in user. Viewing someone else's page will only return their public activity.
Source: https://github.com/ebidel/github-quarterly-stats Основная информация о расширении
| Название | |
| ID | cinfjnlgpbolahlckdnljecnaagecaen |
| Официальный URL | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
| Описание | Adds a quarterly stats button on a user's landing page |
| Размер файла | 670 KB |
| Количество установок | 27 |
| Текущая Версия | 0.0.3 |
| Последнее Обновление | 2014-09-29 |
| Дата публикации | 2014-09-29 |
| Разработчик | Eric Bidelman |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/ebidel/github-quarterly-stats |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github quarterly contributions",
"version": "0.0.3",
"manifest_version": 2,
"description": "Adds a quarterly stats button on a user's landing page",
"icons": {
"16": "icons\/githubicon.png",
"48": "icons\/githubicon.png",
"128": "icons\/githubicon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/content.js",
"bower_components\/moment\/min\/moment.min.js"
]
}
]
} | |