Taiga metrics
A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
¿Qué es Taiga metrics?
Taiga metrics es una extensión de Chrome desarrollada por gerardalvariz, y su función principal es "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Taiga metrics
Descarga archivos de extensión Taiga metrics en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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 .
Información Básica de la Extensión
Nombre | Taiga metrics |
ID | lkflohohjekhlhmfkhmkbjlcgleklgnk |
URL Oficial | https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk |
Descripción | A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool |
Tamaño del Archivo | 512 KB |
Cantidad de Instalaciones | 48 |
Versión Actual | 5.0.5 |
Última Actualización | 2023-06-21 |
Fecha de Publicación | 2023-06-20 |
Desarrollador | gerardalvariz |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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": [] } ] } |