RateMyTrojans

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

What is RateMyTrojans?

RateMyTrojans is a Chrome extension developed by Kyle Chua, and its main feature is "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".

Extension Screenshots

screenshot

Download RateMyTrojans Extension CRX File

Download RateMyTrojans extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
Official URL https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
Description Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
File Size 435 KB
Installation Count 192
Current Version 1.0.2
Last Updated 2018-08-08
Publish Date 2018-07-09
Developer Kyle Chua
Email [email protected]
Payment Type free
Extension Website https://github.com/kylechua/rmpLinks-USC
Supported Languages 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\/*"
    ]
}