UMD Professor Ratings
This extension displays professor ratings next to the classes they are teaching.
Τι είναι το UMD Professor Ratings;
Το UMD Professor Ratings είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Matthew Foulk, και η κύρια λειτουργία του είναι "This extension displays professor ratings next to the classes they are teaching.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης UMD Professor Ratings
Λήψη αρχείων επέκτασης UMD Professor Ratings σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
View professor ratings alongside their class offerings for the University of Maryland schedule of classes.
Βασικές Πληροφορίες Επέκτασης
Όνομα | UMD Professor Ratings |
ID | fgfodddkancncjeipifhldbceifkomhi |
Επίσημο URL | https://chromewebstore.google.com/detail/umd-professor-ratings/fgfodddkancncjeipifhldbceifkomhi |
Περιγραφή | This extension displays professor ratings next to the classes they are teaching. |
Μέγεθος Αρχείου | 1.88 MB |
Αριθμός Εγκαταστάσεων | 288 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2023-01-12 |
Ημερομηνία Δημοσίευσης | 2020-12-12 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Matthew Foulk |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "UMD Professor Ratings", "description": "This extension displays professor ratings next to the classes they are teaching.", "version": "1.0.1", "content_scripts": [ { "matches": [ "https:\/\/app.testudo.umd.edu\/soc\/*" ], "js": [ "jquery.js", "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/images\/*" ], "matches": [ "https:\/\/app.testudo.umd.edu\/*" ], "extension_ids": [] } ], "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png" } } |