Gitlab Contribution Counter
Count GitLab contributions like GitHub
Что такое Gitlab Contribution Counter?
Gitlab Contribution Counter - это расширение Chrome, разработанное chigichan24, и его основная функция - "Count GitLab contributions like GitHub".
Снимки экрана расширения
Скачать файл CRX расширения Gitlab Contribution Counter
Скачайте файлы расширений Gitlab Contribution Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a chrome extension which display contributions on GitLab profile page
Основная информация о расширении
Название | Gitlab Contribution Counter |
ID | nkjkidmkdedgpddijnpnbedecdllcije |
Официальный URL | https://chromewebstore.google.com/detail/gitlab-contribution-count/nkjkidmkdedgpddijnpnbedecdllcije |
Описание | Count GitLab contributions like GitHub |
Размер файла | 46.37 KB |
Количество установок | 42 |
Текущая Версия | 1.0.0.0 |
Последнее Обновление | 2020-12-28 |
Дата публикации | 2020-12-27 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | chigichan24 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/chigichan24/gitlab-contribution-count |
URL страницы помощи | https://github.com/chigichan24/gitlab-contribution-count/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gitlab Contribution Counter", "version": "1.0.0.0", "description": "Count GitLab contributions like GitHub", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/gitlab.com\/*" ], "js": [ "app.js" ], "run_at": "document_end", "all_frames": true } ] } |