RateMyTrojans

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

Τι είναι το RateMyTrojans;

Το RateMyTrojans είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kyle Chua, και η κύρια λειτουργία του είναι "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης RateMyTrojans

Λήψη αρχείων επέκτασης RateMyTrojans σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
Επίσημο URL https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
Περιγραφή Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Μέγεθος Αρχείου 435 KB
Αριθμός Εγκαταστάσεων 192
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2018-08-08
Ημερομηνία Δημοσίευσης 2018-07-09
Προγραμματιστής Kyle Chua
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kylechua/rmpLinks-USC
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}