NTU GPA Calculator
交換、推甄、出國留學必裝
Wat is NTU GPA Calculator?
NTU GPA Calculator is een Chrome-extensie ontwikkeld door J-How Huang, en de belangrijkste functie is "交換、推甄、出國留學必裝".
Extensie Screenshots
Download het CRX-bestand van de extensie NTU GPA Calculator
Download NTU GPA Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
在台灣大學 epo 修課檢視頁面,一覽你大學通算的 GPA、Last 60、或者自己選取要計算的課程。內建 4.3/4.0 兩種 GPA 標準轉換,準備申請文件時不需要再自己動手按計算機。馬上前往查看 GPA:https://reg.aca.ntu.edu.tw/GradeCheck/StudentGCForm Basisinformatie over de Extensie
| Naam | |
| ID | kceneamebmklkdookanmmdkgfcpbajii |
| Officiële URL | https://chromewebstore.google.com/detail/ntu-gpa-calculator/kceneamebmklkdookanmmdkgfcpbajii |
| Beschrijving | 交換、推甄、出國留學必裝 |
| Bestandsgrootte | 16.22 KB |
| Aantal Installaties | 770 |
| Huidige Versie | 1.1.1 |
| Laatst Bijgewerkt | 2022-09-03 |
| Publicatiedatum | 2022-08-24 |
| Beoordeling | 4.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | J-How Huang |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/J-HowHuang/ntu-gpa-calculator-extension |
| Help Pagina-URL | https://github.com/J-HowHuang/ntu-gpa-calculator-extension |
| Ondersteunde Talen | zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "NTU GPA Calculator",
"description": "\u4ea4\u63db\u3001\u63a8\u7504\u3001\u51fa\u570b\u7559\u5b78\u5fc5\u88dd",
"version": "1.1.1",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/reg.aca.ntu.edu.tw\/GradeCheck\/StudentGCForm"
],
"css": [
"mystyles.css"
],
"run_at": "document_end",
"js": [
"getGrade.js"
]
}
],
"icons": {
"128": "\/logo.png"
}
} | |