UMD Professor Ratings
This extension displays professor ratings next to the classes they are teaching.
Что такое UMD Professor Ratings?
UMD Professor Ratings - это расширение Chrome, разработанное Matthew Foulk, и его основная функция - "This extension displays professor ratings next to the classes they are teaching.".
Снимки экрана расширения
Скачать файл CRX расширения UMD Professor Ratings
Скачайте файлы расширений UMD Professor Ratings в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
View professor ratings alongside their class offerings for the University of Maryland schedule of classes. Основная информация о расширении
| Название | |
| ID | fgfodddkancncjeipifhldbceifkomhi |
| Официальный URL | https://chromewebstore.google.com/detail/umd-professor-ratings/fgfodddkancncjeipifhldbceifkomhi |
| Описание | This extension displays professor ratings next to the classes they are teaching. |
| Размер файла | 1.88 MB |
| Количество установок | 288 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2023-01-12 |
| Дата публикации | 2020-12-12 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Matthew Foulk |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "UMD Professor Ratings",
"description": "This extension displays professor ratings next to the classes they are teaching.",
"version": "1.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/app.testudo.umd.edu\/soc\/*"
],
"js": [
"jquery.js",
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"\/images\/*"
],
"matches": [
"https:\/\/app.testudo.umd.edu\/*"
],
"extension_ids": []
}
],
"icons": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png"
}
} | |