IBT GPA Calculator
Modify few STEP's pages to show course name along its code and calculate GPA and CGPA on STEP's result panel.
什麼是IBT GPA Calculator?
IBT GPA Calculator是由UzairAli開發的Chrome擴展程式,該擴展的主要功能是“Modify few STEP's pages to show course name along its code and calculate GPA and CGPA on STEP's result panel.”。
擴展截圖
下載IBT GPA Calculator擴展crx文件
下載IBT GPA Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Note: This extension is just for Ilma University(www.ibt.edu.pk) students. It modify STEP's Result page to show courses name and GPA of individual course as well as Semester based GPA and also calculate and show total CGPA(excluding failed courses). It also modify MyEnrollment and Attendance page to show courses name.
擴展基本資訊
名稱 | IBT GPA Calculator |
ID | ciaboppfflommgcnbmfiemjmmfkmljmg |
官方網址 | https://chromewebstore.google.com/detail/ibt-gpa-calculator/ciaboppfflommgcnbmfiemjmmfkmljmg |
簡介 | Modify few STEP's pages to show course name along its code and calculate GPA and CGPA on STEP's result panel. |
檔案大小 | 131 KB |
安裝次數 | 210 |
目前版本 | 3.04 |
更新時間 | 2021-01-20 |
上架時間 | 2019-06-19 |
評分 | 4.44/5 共 9 次評分 |
開發者 | UzairAli |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IBT GPA Calculator", "description": "Modify few STEP's pages to show course name along its code and calculate GPA and CGPA on STEP's result panel.", "author": "Uzair Ali", "short_name": "GPA Calc", "version": "3.04", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ "style.css", "offlineResult.html" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/step\/Student_Result.aspx" ], "js": [ "jquery-2.1.1.min.js", "coursesName.js", "content.js" ], "all_frames": true } ], "options_ui": { "page": "options.html", "chrome_style": true } } |