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 là gì?

Taiga metrics là một tiện ích mở rộng Chrome được phát triển bởi gerardalvariz, và tính năng chính của nó là "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Taiga metrics

Tải xuống các tệp mở rộng Taiga metrics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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  .                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Taiga metrics Taiga metrics
ID lkflohohjekhlhmfkhmkbjlcgleklgnk
URL Chính Thức https://chromewebstore.google.com/detail/taiga-metrics/lkflohohjekhlhmfkhmkbjlcgleklgnk
Mô tả A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool
Kích Thước Tệp 512 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 5.0.5
Cập Nhật Lần Cuối 2023-06-21
Ngày Phát Hành 2023-06-20
Nhà Phát Triển gerardalvariz
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}