RateMyTrojans
Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Vad är RateMyTrojans?
RateMyTrojans är en Chrome-tillägg utvecklad av Kyle Chua, och dess huvudfunktion är "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".
Tilläggsskärmbilder
Ladda ner RateMyTrojans-förlängningens CRX-fil
Ladda ner RateMyTrojans-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
View the source code: https://github.com/kylechua/rmpLinks-USC Grundläggande Information om Tillägg
| Namn | |
| ID | kmhmknbhcdgedenadphgnpaelgabimmi |
| Officiell webbadress | https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi |
| Beskrivning | Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website. |
| Filstorlek | 435 KB |
| Antal Installationer | 192 |
| Aktuell Version | 1.0.2 |
| Senast Uppdaterad | 2018-08-08 |
| Publiceringsdatum | 2018-07-09 |
| Utvecklare | Kyle Chua |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/kylechua/rmpLinks-USC |
| Stödda Språk | 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\/*"
]
} | |