RateMyTrojans

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

Qu'est-ce que RateMyTrojans ?

RateMyTrojans est une extension Chrome développée par Kyle Chua, et sa fonction principale est "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension RateMyTrojans

Téléchargez les fichiers d'extension RateMyTrojans au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
URL Officiel https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
Description Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Taille du Fichier 435 KB
Nombre d'Installations 192
Version Actuelle 1.0.2
Dernière Mise à Jour 2018-08-08
Date de Publication 2018-07-09
Développeur Kyle Chua
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kylechua/rmpLinks-USC
Langues Prises en Charge 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\/*"
    ]
}