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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gerardalvariz และคุณลักษณะหลักของมันคือ "A chrome extension that shows metrics from the Learning Dashboard of Qrapids for UPC projects into the Taiga project management tool"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Taiga metrics
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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": [] } ] } |