Taiga metrics

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

Taiga metrics क्या है?

Taiga metrics gerardalvariz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Taiga metrics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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  .                    

एक्सटेंशन की मूल जानकारी

नाम Taiga metrics Taiga metrics
ID lkflohohjekhlhmfkhmkbjlcgleklgnk
आधिकारिक URL https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk
विवरण A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
फ़ाइल का आकार 512 KB
स्थापना संख्या 48
वर्तमान संस्करण 5.0.5
अंतिम अपडेट 2023-06-21
प्रकाशन तिथि 2023-06-20
डेवलपर gerardalvariz
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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": []
        }
    ]
}