VTOP Average Predictor

Predict your class average and grades using crowdsourced data. Made for VIT students

Τι είναι το VTOP Average Predictor;

Το VTOP Average Predictor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Garv Tandon, και η κύρια λειτουργία του είναι "Predict your class average and grades using crowdsourced data. Made for VIT students".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης VTOP Average Predictor

Λήψη αρχείων επέκτασης 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 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"
            ]
        }
    ]
}