YorkRMP
RMP extension for YorkU's course page.
Wat is YorkRMP?
YorkRMP is een Chrome-extensie ontwikkeld door Mohammad Mahfooz, en de belangrijkste functie is "RMP extension for YorkU's course page.".
Extensie Screenshots
Download het CRX-bestand van de extensie YorkRMP
Download YorkRMP-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Fetches professor info from RateMyProfessors and displays it under the corresponding professors name on VSB and the York University course portal.
Basisinformatie over de Extensie
Naam | YorkRMP |
ID | cdhfogbjpedkpmapnddalehbjdjahfmp |
Officiële URL | https://chromewebstore.google.com/detail/yorkrmp/cdhfogbjpedkpmapnddalehbjdjahfmp |
Beschrijving | RMP extension for YorkU's course page. |
Bestandsgrootte | 8.97 KB |
Aantal Installaties | 138 |
Huidige Versie | 1.2.7 |
Laatst Bijgewerkt | 2023-12-17 |
Publicatiedatum | 2023-01-17 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Mohammad Mahfooz |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/mahfoozm/YorkURMP |
URL van de Privacybeleid Pagina | https://github.com/mahfoozm/YorkURMP/blob/main/README.md |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YorkRMP", "description": "RMP extension for YorkU's course page.", "version": "1.2.7", "icons": { "128": "assets\/icon128.png" }, "permissions": [ "activeTab", "webRequest", "https:\/\/w2prod.sis.yorku.ca\/*", "https:\/\/schedulebuilder.yorku.ca\/*", "https:\/\/www.ratemyprofessors.com\/*" ], "optional_permissions": [ "webNavigation", "tabs" ], "background": { "service_worker": "background.js" }, "event_page": "event.html", "content_scripts": [ { "matches": [ "https:\/\/w2prod.sis.yorku.ca\/*", "https:\/\/schedulebuilder.yorku.ca\/*" ], "js": [ "content.js" ] } ] } |