RateMyGWU
Displays Rate My Professors information directly on the GW schedule of classes
Was ist RateMyGWU?
RateMyGWU ist eine Chrome-Erweiterung, die von Jamie Scott entwickelt wurde, und ihr Hauptmerkmal ist "Displays Rate My Professors information directly on the GW schedule of classes".
Erweiterungsscreenshots
RateMyGWU-Erweiterungs-CRX-Datei herunterladen
Laden Sie RateMyGWU-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Makes the lives of GW students easier by displaying Rate My Professor data directly on the GW schedule of classes. Simply hover over a professors name to see information such as their overall rating and their level of difficulty! You may also click on the professors name to be linked directly to their Rate My Professor page.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cpbecdacgjgpnpehjgkhddiancbonija |
Offizielle URL | https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija |
Beschreibung | Displays Rate My Professors information directly on the GW schedule of classes |
Dateigröße | 408 KB |
Installationsanzahl | 85 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-08-17 |
Veröffentlichungsdatum | 2020-08-17 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Jamie Scott |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/JamieScottC/RateMyGWU |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RateMyGWU", "version": "1.0", "description": "Displays Rate My Professors information directly on the GW schedule of classes", "permissions": [ "*:\/\/www.ratemyprofessors.com\/*", "http:\/\/fonts.googleapis.com\/", "https:\/\/fonts.googleapis.com\/" ], "web_accessible_resources": [ "css\/rate.css", "fonts\/Manrope\/Manrope-VariableFont_wght.ttf" ], "background": { "scripts": [ "\/js\/jquery-3.5.1.min.js", "\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/my.gwu.edu\/mod\/pws\/courses.cfm?campId=*&termId=*&subjId=*" ], "js": [ "\/js\/jquery-3.5.1.min.js", "\/js\/injectRate.js" ], "css": [ "\/css\/rate.css" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "16": "images\/RateMyGWULogo16.png", "32": "images\/RateMyGWULogo32.png", "48": "images\/RateMyGWULogo48.png", "128": "images\/RateMyGWULogo128.png" } }, "icons": { "16": "images\/RateMyGWULogo16.png", "32": "images\/RateMyGWULogo32.png", "48": "images\/RateMyGWULogo48.png", "128": "images\/RateMyGWULogo128.png" }, "manifest_version": 2 } |