RateMyTrojans

Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.

Co to jest RateMyTrojans?

RateMyTrojans to rozszerzenie Chrome opracowane przez Kyle Chua, a jego główną funkcją jest „Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RateMyTrojans

Pobierz pliki rozszerzeń RateMyTrojans 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

                        View the source code: https://github.com/kylechua/rmpLinks-USC                    

Podstawowe informacje o rozszerzeniu

Nazwa RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
Oficjalny URL https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
Opis Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Rozmiar pliku 435 KB
Liczba instalacji 192
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2018-08-08
Data Publikacji 2018-07-09
Deweloper Kyle Chua
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kylechua/rmpLinks-USC
Obsługiwane Języki 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\/*"
    ]
}