RateMyGWU

Displays Rate My Professors information directly on the GW schedule of classes

Что такое RateMyGWU?

RateMyGWU - это расширение Chrome, разработанное Jamie Scott, и его основная функция - "Displays Rate My Professors information directly on the GW schedule of classes".

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

screenshot

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

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

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

                        Makes the lives of GW students easier by displaying Rate My Professor data directly on the GW schedule of classes.
Simply hover over a professors name to see information such as their overall rating and their level of difficulty!
You may also click on the professors name to be linked directly to their Rate My Professor page.                    

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

Название RateMyGWU RateMyGWU
ID cpbecdacgjgpnpehjgkhddiancbonija
Официальный URL https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija
Описание Displays Rate My Professors information directly on the GW schedule of classes
Размер файла 408 KB
Количество установок 85
Текущая Версия 1.0
Последнее Обновление 2020-08-17
Дата публикации 2020-08-17
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Jamie Scott
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/JamieScottC/RateMyGWU
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyGWU",
    "version": "1.0",
    "description": "Displays Rate My Professors information directly on the GW schedule of classes",
    "permissions": [
        "*:\/\/www.ratemyprofessors.com\/*",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "css\/rate.css",
        "fonts\/Manrope\/Manrope-VariableFont_wght.ttf"
    ],
    "background": {
        "scripts": [
            "\/js\/jquery-3.5.1.min.js",
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.gwu.edu\/mod\/pws\/courses.cfm?campId=*&termId=*&subjId=*"
            ],
            "js": [
                "\/js\/jquery-3.5.1.min.js",
                "\/js\/injectRate.js"
            ],
            "css": [
                "\/css\/rate.css"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/RateMyGWULogo16.png",
            "32": "images\/RateMyGWULogo32.png",
            "48": "images\/RateMyGWULogo48.png",
            "128": "images\/RateMyGWULogo128.png"
        }
    },
    "icons": {
        "16": "images\/RateMyGWULogo16.png",
        "32": "images\/RateMyGWULogo32.png",
        "48": "images\/RateMyGWULogo48.png",
        "128": "images\/RateMyGWULogo128.png"
    },
    "manifest_version": 2
}