Blackboard Grades UVM

used to view calculated UVM Blackboard Grades

Τι είναι το Blackboard Grades UVM;

Το Blackboard Grades UVM είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον samgusickdev, και η κύρια λειτουργία του είναι "used to view calculated UVM Blackboard Grades".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Blackboard Grades UVM

Λήψη αρχείων επέκτασης Blackboard Grades UVM σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        If UVM students know anything about struggle, it's probably Blackboard. And while we can't do Blackboard's job for them, we figured we could make things a little easier for UVM students...

Introducing Blackboard Grades UVM, a new way to view your grades!

You no longer need to do those tedious calculations yourself when you can't see your final grade. this extension will get all of your grade information and do the calculations for you! Just login to blackboard, click the extension, edit and save your weights (first time only), and you're good to go! 

Code: Sam Gusick
Concept & Art: Evan Siegel

Instructions:

1. log in to blackboard
2. click the extension to load and view classes
3. fill in the assignment types with the weights from your syllabus (first time Only, saves automatically)
4. Enjoy!

FAQ:

Q: How do I use it?

A: Click the extension icon in the top right corner of your browser

Q: My class says N/A, why?

A: the extension could not pull the grade info for various reasons. Either your class did not create a grade page or there are no grades entered. if this occurs and neither are the case, report a bug. Do keep in mind that the format of blackboard grades across classes is very different, it's impossible for the extension to account for all of these differences.

Q: I'm having an issue that's not answered here.

A: click "report a bug" in the extension and fill out the form with your issue.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Blackboard Grades UVM Blackboard Grades UVM
ID lcollpogenmgdokchggaeoencofjkogj
Επίσημο URL https://chromewebstore.google.com/detail/blackboard-grades-uvm/lcollpogenmgdokchggaeoencofjkogj
Περιγραφή used to view calculated UVM Blackboard Grades
Μέγεθος Αρχείου 773 KB
Αριθμός Εγκαταστάσεων 195
Τρέχουσα Έκδοση 1.0.0.8
Τελευταία Ενημέρωση 2022-09-28
Ημερομηνία Δημοσίευσης 2021-05-04
Προγραμματιστής samgusickdev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://docs.google.com/forms/d/e/1FAIpQLSfYYhPe83ALiIcTBFPS5Hh5QOiQXjaHliNEIXmKEy0nqCZzmQ/viewform?usp=sf_link
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blackboard Grades UVM",
    "version": "1.0.0.8",
    "icons": {
        "1169": "images\/icon.png"
    },
    "author": "Sam Gusick and Evan Siegel",
    "description": "used to view calculated UVM Blackboard Grades",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/bb.uvm.edu\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}