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 là gì?
IBT GPA Calculator là một tiện ích mở rộng Chrome được phát triển bởi UzairAli, và tính năng chính của nó là "Modify few STEP's pages to show course name along its code and calculate GPA and CGPA on STEP's result panel.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng IBT GPA Calculator
Tải xuống các tệp mở rộng IBT GPA Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | IBT GPA Calculator |
ID | ciaboppfflommgcnbmfiemjmmfkmljmg |
URL Chính Thức | https://chromewebstore.google.com/detail/ibt-gpa-calculator/ciaboppfflommgcnbmfiemjmmfkmljmg |
Mô tả | Modify few STEP's pages to show course name along its code and calculate GPA and CGPA on STEP's result panel. |
Kích Thước Tệp | 131 KB |
Số Lần Cài Đặt | 210 |
Phiên Bản Hiện Tại | 3.04 |
Cập Nhật Lần Cuối | 2021-01-20 |
Ngày Phát Hành | 2019-06-19 |
Đánh Giá | 4.44/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | UzairAli |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |