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文件
下載VTOP Average Predictor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } ] } |