Taiga metrics

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

O que é Taiga metrics?

Taiga metrics é uma extensão do Chrome desenvolvida por gerardalvariz, e sua principal característica é "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Taiga metrics

Baixe arquivos de extensão Taiga metrics no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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  .                    

Informações Básicas da Extensão

Nome Taiga metrics Taiga metrics
ID lkflohohjekhlhmfkhmkbjlcgleklgnk
URL Oficial https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk
Descrição A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
Tamanho do Arquivo 512 KB
Contagem de Instalações 48
Versão Atual 5.0.5
Última Atualização 2023-06-21
Data de Publicação 2023-06-20
Desenvolvedor gerardalvariz
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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": []
        }
    ]
}