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開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool”。
擴展截圖
下載Taiga metrics擴展crx文件
下載Taiga metrics擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | lkflohohjekhlhmfkhmkbjlcgleklgnk |
官方網址 | 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": [] } ] } |