RateMyTrojans
Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Cos'è RateMyTrojans?
RateMyTrojans è un'estensione di Chrome sviluppata da Kyle Chua, e la sua funzione principale è "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione RateMyTrojans
Scarica i file di estensione RateMyTrojans 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
View the source code: https://github.com/kylechua/rmpLinks-USC Informazioni di Base sull'Estensione
| Nome | |
| ID | kmhmknbhcdgedenadphgnpaelgabimmi |
| URL Ufficiale | https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi |
| Descrizione | Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website. |
| Dimensione del File | 435 KB |
| Conteggio Installazioni | 192 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2018-08-08 |
| Data di Pubblicazione | 2018-07-09 |
| Sviluppatore | Kyle Chua |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/kylechua/rmpLinks-USC |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "RateMyTrojans",
"description": "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.",
"version": "1.0.2",
"background": {
"scripts": [
"jquery-3.2.1.min.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/webreg.usc.edu\/*"
],
"js": [
"jquery-3.2.1.min.js",
"findProfs.js"
]
}
],
"web_accessible_resources": [
"img\/*.png"
],
"permissions": [
"https:\/\/www.ratemyprofessors.com\/*"
]
} | |