uAlbertaProfGuide

View RMP scores on uAlberta's class enrollment page

Что такое uAlbertaProfGuide?

uAlbertaProfGuide - это расширение Chrome, разработанное theDust, и его основная функция - "View RMP scores on uAlberta's class enrollment page".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения uAlbertaProfGuide

Скачайте файлы расширений uAlbertaProfGuide в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Chrome extension that integrate Rate My Professor results into the beartracks course search page.

Search for course under search for classes header. Hover over professor to view results from RMP. Click prof to redirect to RMP to view comments.

uAlbertaProfGuide is an unofficial chrome extension for beartracks, it is not endorsed by the University of Alberta                    

Основная информация о расширении

Название uAlbertaProfGuide uAlbertaProfGuide
ID omminijickdpopkhpeehljlhehicgclk
Официальный URL https://chromewebstore.google.com/detail/ualbertaprofguide/omminijickdpopkhpeehljlhehicgclk
Описание View RMP scores on uAlberta's class enrollment page
Размер файла 68.77 KB
Количество установок 31
Текущая Версия 1.2
Последнее Обновление 2017-04-10
Дата публикации 2017-04-09
Рейтинг 5.00/5 Всего 5 оценок
Разработчик theDust
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "uAlbertaProfGuide",
    "version": "1.2",
    "description": "View RMP scores on uAlberta's class enrollment page",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/psp\/uahebprd\/EMPLOYEE\/HRMS\/c\/SA_LEARNER_SERVICES*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "Assets\/*.png"
    ]
}