UMD Schedule of Classes Professor Rating
This extension will add professor ratings to each section in the UMD Schedule of Classes.
Что такое UMD Schedule of Classes Professor Rating?
UMD Schedule of Classes Professor Rating - это расширение Chrome, разработанное a.mccourt60, и его основная функция - "This extension will add professor ratings to each section in the UMD Schedule of Classes.".
Снимки экрана расширения
Скачать файл CRX расширения UMD Schedule of Classes Professor Rating
Скачайте файлы расширений UMD Schedule of Classes Professor Rating в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | UMD Schedule of Classes Professor Rating |
ID | jghbeiknpbpkicbeckkkdpalgdaeehmd |
Официальный URL | https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd |
Описание | This extension will add professor ratings to each section in the UMD Schedule of Classes. |
Размер файла | 1.16 MB |
Количество установок | 41 |
Текущая Версия | 1.1 |
Последнее Обновление | 2017-12-11 |
Дата публикации | 2017-12-10 |
Разработчик | a.mccourt60 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://amccourt.github.io/ |
Поддерживаемые языки | 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" ] } ] } |