VTOP Average Predictor
Predict your class average and grades using crowdsourced data. Made for VIT students
VTOP Average Predictor란 무엇입니까?
VTOP Average Predictor은(는) Garv Tandon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Predict your class average and grades using crowdsourced data. Made for VIT students"입니다.
확장 프로그램 스크린샷
VTOP Average Predictor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Wondering what your class average is and where you are relative to it? Trying to figure out how many marks you might need to get that coveted S grade? Now predict your class average and grades using crowdsourced data from other VIT students of your class. To see your class averages simply open the marks page in VTOP and the class average for each component (DAs, CATs, etc.) will be displayed. Please share this extension with your friends too so that your class average is predicted correctly. A greater percentage of the class using the extension implies a greater accuracy of average prediction. The number of students in your class using the extension is also displayed beside each mark component to give an idea about the accuracy of the predicted average. Note - By using this extension, you allow your anonymous marks to be saved for improving the accuracy of average prediction. We have made all-out efforts and taken a multi-layer approach to ensure all marks are anonymised and stored securely. Please report any bugs/suggestions on the Chrome Web Store page.
확장 프로그램 기본 정보
이름 | VTOP Average Predictor |
ID | neokdhfmpnmjhgihnlakdpodcpbdapdb |
공식 URL | https://chromewebstore.google.com/detail/vtop-average-predictor/neokdhfmpnmjhgihnlakdpodcpbdapdb |
설명 | Predict your class average and grades using crowdsourced data. Made for VIT students |
파일 크기 | 14.64 KB |
설치 횟수 | 250 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-01-11 |
출시 날짜 | 2023-01-11 |
개발자 | Garv Tandon |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "VTOP Average Predictor", "version": "1.0", "description": "Predict your class average and grades using crowdsourced data. Made for VIT students", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "webRequest" ], "host_permissions": [ "*:\/\/vtop.vit.ac.in\/*", "https:\/\/vtop-average-predictor.onrender.com\/*" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/vtop.vit.ac.in\/*" ], "js": [ "markspage.js" ] } ] } |