Easy Bruinwalk Ratings

Easily see Bruinwalk professor ratings in UCLA class search results.

Qu'est-ce que Easy Bruinwalk Ratings ?

Easy Bruinwalk Ratings est une extension Chrome développée par Bruinwalk, et sa fonction principale est "Easily see Bruinwalk professor ratings in UCLA class search results.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Easy Bruinwalk Ratings

Téléchargez les fichiers d'extension Easy Bruinwalk Ratings 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

                        Adds Bruinwalk professor ratings and class grade distributions to MyUCLA class registration pages. Now you can see student ratings in your study list, class planner, and when finding new classes to enroll in!

Hover over the ratings to reveal a more detailed display. Click to see the professor's full Bruinwalk page. Please note that not all professors may be on Bruinwalk.

On professor evaluation surveys, look for a button near the bottom to automatically export your comments to Bruinwalk!

This extension is in active development. If you catch any problems for Chrome or Firefox, please let the Bruinwalk team know by sending feedback to [email protected].

Thanks to @RobertUrsua and @preethamrn on Github for the initial version of this extension!                    

Informations de Base sur l'Extension

Nom Easy Bruinwalk Ratings Easy Bruinwalk Ratings
ID iohhcbccamefhmjnppendeffiapogjfg
URL Officiel https://chromewebstore.google.com/detail/easy-bruinwalk-ratings/iohhcbccamefhmjnppendeffiapogjfg
Description Easily see Bruinwalk professor ratings in UCLA class search results.
Taille du Fichier 318 KB
Nombre d'Installations 15,132
Version Actuelle 1.1.0
Dernière Mise à Jour 2024-02-22
Date de Publication 2020-07-03
Évaluation 5.00/5 Total 28 Évaluations
Développeur Bruinwalk
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://bruinwalk.com
URL de la Page de Politique de Confidentialité https://bruinwalk.com/privacy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Easy Bruinwalk Ratings",
    "description": "Easily see Bruinwalk professor ratings in UCLA class search results.",
    "version": "1.1.0",
    "short_name": "Bruinwalk",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnegvvuv8lJi1JqtUtV0QLO4Vu0ilWbSav3pX8\/bhocx3xRBJXh\/BpRl6gxKyF5Na693XFjUrQkjbegIzJA3IstTrkabgnPaUhZWINK7yJKLcADsAnJvBDsAdue7ku+ufz7Hqb19860fUwjtxiKhgG8ZinaC0Y4eXBkm23cm8gRLPVYhcCHoT3RIeGvWcsKrR\/aNBLcJ+6PMQQx4k3FbtCpphQCVL8tbMbUWmYgAQNOh3GZFJS1AJ\/p1qaqlqHc7h\/DfoMgI3XTvkTgFuwdbVAvg53Tjqb9LG2K1V2aRJeHRBx2ns0xwZ5h4VSAOQ5BahTSK3yIoknTEMna0CkdVSoQIDAQAB",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/be.my.ucla.edu\/*",
                "*:\/\/sa.ucla.edu\/*"
            ],
            "js": [
                "class-planner.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/surveys.college.ucla.edu\/*"
            ],
            "js": [
                "prof-eval.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "*:\/\/surveys.college.ucla.edu\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "storage",
        "identity"
    ],
    "host_permissions": [
        "*:\/\/*.bruinwalk.com\/*",
        "https:\/\/echo.pcheng.cc\/*"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}