UofT Timetable Rating Embedder

A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.

Qu'est-ce que UofT Timetable Rating Embedder ?

UofT Timetable Rating Embedder est une extension Chrome développée par TheLegendaryBanana, et sa fonction principale est "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension UofT Timetable Rating Embedder

Téléchargez les fichiers d'extension UofT Timetable Rating Embedder 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

                        This chrome extension gets the ratings from www.ratemyprofessors.com for all the instructors that you are currently searching courses for on https://timetable.iit.artsci.utoronto.ca/ so you don't have to.

You can now leisurely search for the best professors each class has to offer, if they have an existing review.

To use simply click the acorn after you search for any course(s) on the ArtSci course finder.                    

Informations de Base sur l'Extension

Nom UofT Timetable Rating Embedder UofT Timetable Rating Embedder
ID ihcpidochhfbfibmdbogigfpnpaceeok
URL Officiel https://chromewebstore.google.com/detail/uoft-timetable-rating-emb/ihcpidochhfbfibmdbogigfpnpaceeok
Description A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.
Taille du Fichier 32.65 KB
Nombre d'Installations 55
Version Actuelle 1.0.2
Dernière Mise à Jour 2017-07-10
Date de Publication 2017-07-10
Évaluation 5.00/5 Total 1 Évaluations
Développeur TheLegendaryBanana
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UofT Timetable Rating Embedder",
    "version": "1.0.2",
    "description": "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_title": "RMP Rating Embedder"
    },
    "background": {
        "scripts": [
            "eventPage.js",
            "tracker.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/timetable.iit.artsci.utoronto.ca\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/timetable.iit.artsci.utoronto.ca\/",
        "http:\/\/www.ratemyprofessors.com\/*"
    ],
    "web_accessible_resources": [
        "cold-chili.png",
        "new-hot-chili.png"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}