RateMyTrojans
Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Что такое RateMyTrojans?
RateMyTrojans - это расширение Chrome, разработанное Kyle Chua, и его основная функция - "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".
Снимки экрана расширения
Скачать файл CRX расширения RateMyTrojans
Скачайте файлы расширений RateMyTrojans в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
View the source code: https://github.com/kylechua/rmpLinks-USC Основная информация о расширении
| Название | |
| ID | kmhmknbhcdgedenadphgnpaelgabimmi |
| Официальный URL | https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi |
| Описание | Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website. |
| Размер файла | 435 KB |
| Количество установок | 192 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2018-08-08 |
| Дата публикации | 2018-07-09 |
| Разработчик | Kyle Chua |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/kylechua/rmpLinks-USC |
| Поддерживаемые языки | 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\/*"
]
} | |