Taiga metrics

A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool

Wat is Taiga metrics?

Taiga metrics is een Chrome-extensie ontwikkeld door gerardalvariz, en de belangrijkste functie is "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Taiga metrics

Download Taiga metrics-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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  .                    

Basisinformatie over de Extensie

Naam Taiga metrics Taiga metrics
ID lkflohohjekhlhmfkhmkbjlcgleklgnk
Officiële URL https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk
Beschrijving A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
Bestandsgrootte 512 KB
Aantal Installaties 48
Huidige Versie 5.0.5
Laatst Bijgewerkt 2023-06-21
Publicatiedatum 2023-06-20
Ontwikkelaar gerardalvariz
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": []
        }
    ]
}