RateMyTrojans

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

Was ist RateMyTrojans?

RateMyTrojans ist eine Chrome-Erweiterung, die von Kyle Chua entwickelt wurde, und ihr Hauptmerkmal ist "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".

Erweiterungsscreenshots

screenshot

RateMyTrojans-Erweiterungs-CRX-Datei herunterladen

Laden Sie RateMyTrojans-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
Offizielle URL https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
Beschreibung Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Dateigröße 435 KB
Installationsanzahl 192
Aktuelle Version 1.0.2
Letztes Update 2018-08-08
Veröffentlichungsdatum 2018-07-09
Entwickler Kyle Chua
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kylechua/rmpLinks-USC
Unterstützte Sprachen 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\/*"
    ]
}