RateMyGWU

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

Co to jest RateMyGWU?

RateMyGWU to rozszerzenie Chrome opracowane przez Jamie Scott, a jego główną funkcją jest „Displays Rate My Professors information directly on the GW schedule of classes”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RateMyGWU

Pobierz pliki rozszerzeń RateMyGWU w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa RateMyGWU RateMyGWU
ID cpbecdacgjgpnpehjgkhddiancbonija
Oficjalny URL https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija
Opis Displays Rate My Professors information directly on the GW schedule of classes
Rozmiar pliku 408 KB
Liczba instalacji 85
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-08-17
Data Publikacji 2020-08-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Jamie Scott
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/JamieScottC/RateMyGWU
Obsługiwane Języki 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
}