Portland State RateMyProfessors

Displays professors' RateMyProfessors ratings in the online course listings for Portland State University.

Что такое Portland State RateMyProfessors?

Portland State RateMyProfessors - это расширение Chrome, разработанное dev.trevorliberty, и его основная функция - "Displays professors' RateMyProfessors ratings in the online course listings for Portland State University.".

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

screenshot

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

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

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

                        Rate My Professor Extension for Portland State University

1. Download the extension
2. Browse classes normally
3. Hover over a professor

Developed by Trevor Liberty and Joe Leland

Version 1.0.0
-Dealt with Rate My Professor overhaul

Currently not supporting classes with multiple professors.
-Support will be added in future patch                    

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

Название Portland State RateMyProfessors Portland State RateMyProfessors
ID hpfjccopidfknnnfogdldecealjmkaoc
Официальный URL https://chromewebstore.google.com/detail/portland-state-ratemyprof/hpfjccopidfknnnfogdldecealjmkaoc
Описание Displays professors' RateMyProfessors ratings in the online course listings for Portland State University.
Размер файла 15.35 MB
Количество установок 58
Текущая Версия 1.0.1
Последнее Обновление 2020-05-14
Дата публикации 2020-05-13
Рейтинг 5.00/5 Всего 3 оценок
Разработчик dev.trevorliberty
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Portland State RateMyProfessors",
    "description": "Displays professors' RateMyProfessors ratings in the online course listings for Portland State University.",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.ratemyprofessors.com\/*"
    ],
    "icons": {
        "16": "rmpIcon.png",
        "48": "rmpIcon.png",
        "128": "rmpIcon.png"
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "https:\/\/app.banner.pdx.edu\/assets\/mobileAppPromo.png"
            ],
            "matches": [
                "https:\/\/app.banner.pdx.edu\/StudentRegistrationSsb\/ssb\/classRegistration\/classRegistration",
                "https:\/\/app.banner.pdx.edu\/StudentRegistrationSsb\/ssb\/classSearch\/classSearch"
            ],
            "css": [
                "dist\/css\/tooltipster.bundle.css"
            ],
            "js": [
                "jquery.js",
                "dist\/js\/tooltipster.bundle.js",
                "rmp.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ],
        "persistent": false
    }
}