Taiga metrics
A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
Hvad er Taiga metrics?
Taiga metrics er en Chrome-udvidelse udviklet af gerardalvariz, og dens hovedfunktion er "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".
Udvidelsesskærmbilleder
Download Taiga metrics-udvidelses-CRX-fil
Download Taiga metrics-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 .
Grundlæggende oplysninger om udvidelsen
Navn | Taiga metrics |
ID | lkflohohjekhlhmfkhmkbjlcgleklgnk |
Officiel URL | https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk |
Beskrivelse | A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool |
Filstørrelse | 512 KB |
Antal Installationer | 48 |
Nuværende Version | 5.0.5 |
Senest Opdateret | 2023-06-21 |
Udgivelsesdato | 2023-06-20 |
Udvikler | gerardalvariz |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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": [] } ] } |