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 . 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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": []
}
]
} | |