RateMyGWU
Displays Rate My Professors information directly on the GW schedule of classes
Cos'è RateMyGWU?
RateMyGWU è un'estensione di Chrome sviluppata da Jamie Scott, e la sua funzione principale è "Displays Rate My Professors information directly on the GW schedule of classes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RateMyGWU
Scarica i file di estensione RateMyGWU in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | cpbecdacgjgpnpehjgkhddiancbonija |
URL Ufficiale | https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija |
Descrizione | Displays Rate My Professors information directly on the GW schedule of classes |
Dimensione del File | 408 KB |
Conteggio Installazioni | 85 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-08-17 |
Data di Pubblicazione | 2020-08-17 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Jamie Scott |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/JamieScottC/RateMyGWU |
Lingue Supportate | 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 } |