Taiga metrics

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

Was ist Taiga metrics?

Taiga metrics ist eine Chrome-Erweiterung, die von gerardalvariz entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".

Erweiterungsscreenshots

screenshot
screenshot

Taiga metrics-Erweiterungs-CRX-Datei herunterladen

Laden Sie Taiga metrics-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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  .                    

Grundlegende Informationen zur Erweiterung

Name Taiga metrics Taiga metrics
ID lkflohohjekhlhmfkhmkbjlcgleklgnk
Offizielle URL https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk
Beschreibung A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
Dateigröße 512 KB
Installationsanzahl 48
Aktuelle Version 5.0.5
Letztes Update 2023-06-21
Veröffentlichungsdatum 2023-06-20
Entwickler gerardalvariz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": []
        }
    ]
}