RMP Schedule Builder Links

Get links to the ratemyprofessor pages for the professor(s) of each class!

Qu'est-ce que RMP Schedule Builder Links ?

RMP Schedule Builder Links est une extension Chrome développée par Rachit Sharma, et sa fonction principale est "Get links to the ratemyprofessor pages for the professor(s) of each class!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension RMP Schedule Builder Links

Téléchargez les fichiers d'extension RMP Schedule Builder Links 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

                        As a sophomore at the UC Davis, I have been using schedule builder for quite some time. When recently using it for the fall quarter, I found it cumbersome to have to open a new tab and type in a professors name in order to get their ratemyprofessor scores and see the comments. While I know that extensions are available to show RMP scores directly on classes, often the best information comes from the comments. Because of this, I created an extension that automatically shows RMP links next to the professor(s) name of any class. Just click on it, and you will be lead directly to the ratemyprofessor site of the professor of the class. It is very convenient and will save you precious time!                    

Informations de Base sur l'Extension

Nom RMP Schedule Builder Links RMP Schedule Builder Links
ID bkoaldjpbiffcglcdkkiccjolepciajh
URL Officiel https://chromewebstore.google.com/detail/rmp-schedule-builder-link/bkoaldjpbiffcglcdkkiccjolepciajh
Description Get links to the ratemyprofessor pages for the professor(s) of each class!
Taille du Fichier 48.67 KB
Nombre d'Installations 26
Version Actuelle 0.1
Dernière Mise à Jour 2021-09-14
Date de Publication 2021-09-14
Développeur Rachit Sharma
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/RachitSharma2001/AllPossibleSchedules
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RMP Schedule Builder Links",
    "description": "Get links to the ratemyprofessor pages for the professor(s) of each class!",
    "version": "0.1",
    "icons": {
        "16": "Icon_16.png",
        "48": "Icon_48.png",
        "128": "Icon_128.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/my.ucdavis.edu\/schedulebuilder\/index.cfm*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "test_file.txt"
            ],
            "matches": [
                ""
            ]
        }
    ]
}