Taiga metrics
A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
Что такое Taiga metrics?
Taiga metrics - это расширение Chrome, разработанное gerardalvariz, и его основная функция - "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".
Снимки экрана расширения
Скачать файл CRX расширения Taiga metrics
Скачайте файлы расширений Taiga metrics в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool. This is part of a Final Project from UPC .
Основная информация о расширении
Название | Taiga metrics |
ID | lkflohohjekhlhmfkhmkbjlcgleklgnk |
Официальный URL | https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk |
Описание | A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool |
Размер файла | 512 KB |
Количество установок | 48 |
Текущая Версия | 5.0.5 |
Последнее Обновление | 2023-06-21 |
Дата публикации | 2023-06-20 |
Разработчик | gerardalvariz |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool", "version": "5.0.5", "manifest_version": 3, "name": "Taiga metrics", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "qrapids-34.png" }, "icons": { "128": "qrapids-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/tree.taiga.io\/*" ], "js": [ "taigaContent.bundle.js" ], "css": [ "content.styles.css" ] } ], "permissions": [ "storage", "tabs" ], "host_permissions": [ "http:\/\/localhost:3000\/*", "https:\/\/proxy-tfg.vercel.app\/", "http:\/\/gessi-dashboard.essi.upc.edu:3000\/", "https:\/\/tree.taiga.io\/*", "https:\/\/cors-anywhere.herokuapp.com\/*" ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "qrapids-128.png", "qrapids-34.png" ], "matches": [] } ] } |