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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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 } } |