UMD Schedule of Classes Professor Rating
This extension will add professor ratings to each section in the UMD Schedule of Classes.
Co to jest UMD Schedule of Classes Professor Rating?
UMD Schedule of Classes Professor Rating to rozszerzenie Chrome opracowane przez a.mccourt60, a jego główną funkcją jest „This extension will add professor ratings to each section in the UMD Schedule of Classes.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia UMD Schedule of Classes Professor Rating
Pobierz pliki rozszerzeń UMD Schedule of Classes Professor Rating w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension is a personal side project to practice JQuery and Javascript. This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor. This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.
Podstawowe informacje o rozszerzeniu
Nazwa | UMD Schedule of Classes Professor Rating |
ID | jghbeiknpbpkicbeckkkdpalgdaeehmd |
Oficjalny URL | https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd |
Opis | This extension will add professor ratings to each section in the UMD Schedule of Classes. |
Rozmiar pliku | 1.16 MB |
Liczba instalacji | 41 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2017-12-11 |
Data Publikacji | 2017-12-10 |
Deweloper | a.mccourt60 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://amccourt.github.io/ |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UMD Schedule of Classes Professor Rating", "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.", "version": "1.1", "browser_action": { "default_icon": "img\/testudo.png", "default_title": "UMD Professor Rating" }, "permissions": [ "activeTab", "https:\/\/search.mtvnservices.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/ntst.umd.edu\/soc\/*" ], "js": [ "jquery-3.2.1.min.js", "content-script.js" ] } ] } |