GitLab Todos
Polls GitLab Todo list and notifies the user when new todos are created
Что такое GitLab Todos?
GitLab Todos - это расширение Chrome, разработанное Jay Anslow, и его основная функция - "Polls GitLab Todo list and notifies the user when new todos are created".
Снимки экрана расширения
Скачать файл CRX расширения GitLab Todos
Скачайте файлы расширений GitLab Todos в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
https://gitlab.com/janslow/gitlab-todos-chrome-extension/
To setup, go to the options page (right click on extension in top right and click "Options" or go to the "Manage Extensions" page) and enter the URL of the GitLab deployment (e.g., "https://gitlab.com/" or "https://gitlab.my-company.com/") and a Personal Access Token (click "create" after entering the URL to go to your profile to create one). Then click save. Основная информация о расширении
| Название | |
| ID | bcohpeejjmokckjlgehamemdcmobfbob |
| Официальный URL | https://chrome.google.com/webstore/detail/gitlab-todos/bcohpeejjmokckjlgehamemdcmobfbob |
| Описание | Polls GitLab Todo list and notifies the user when new todos are created |
| Размер файла | 96 KB |
| Количество установок | 20 |
| Текущая Версия | 0.2.1 |
| Последнее Обновление | 2016-09-28 |
| Дата публикации | 2016-09-28 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Jay Anslow |
| Тип оплаты | free |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitLab Todos",
"version": "0.2.1",
"description": "Polls GitLab Todo list and notifies the user when new todos are created",
"icons": {
"16": "images\/gitlab16.png",
"48": "images\/gitlab48.png",
"128": "images\/gitlab128.png"
},
"author": "Jay Anslow",
"background": {
"scripts": [
"polyfill.js",
"common.js",
"background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images\/gitlab19.png",
"38": "images\/gitlab38.png"
},
"default_title": "GitLab Todos"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"alarms",
"background",
"notifications",
"storage"
]
} | |