Rate My NYU Professors

Display the ratings of each professor for your classes on Albert!

¿Qué es Rate My NYU Professors?

Rate My NYU Professors es una extensión de Chrome desarrollada por Alex Ko, y su función principal es "Display the ratings of each professor for your classes on Albert!".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Rate My NYU Professors

Descarga archivos de extensión Rate My NYU Professors en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A simple Chrome extension that displays the ratings of each NYU professor for each course on Albert! Works with professors across all NYU schools, including Tandon, Steinhardt, etc. 

How this extension works:
1. Go to any of your courses page on Albert (not your home page).
2. Click on the extension on your toolbar.
3. Click "Click to Show Ratings" button.
4. If there is any rating found for that professor, the number will show up next to their name. If no ratings found, it will show N/A.
5. Click on the rating to go to their rate my professor page. Click on N/A to give them the first rating. 
6. Hover over their rating to see more details.
7. Enjoy selecting all your courses! ;)                    

Información Básica de la Extensión

Nombre Rate My NYU Professors Rate My NYU Professors
ID mhgjkecddklmbnllifdpkhcnhfpkjfji
URL Oficial https://chromewebstore.google.com/detail/rate-my-nyu-professors/mhgjkecddklmbnllifdpkhcnhfpkjfji
Descripción Display the ratings of each professor for your classes on Albert!
Tamaño del Archivo 1.08 MB
Cantidad de Instalaciones 456
Versión Actual 1.3.7
Última Actualización 2023-04-07
Fecha de Publicación 2021-05-27
Calificación 5.00/5 Total de 11 Calificaciones
Desarrollador Alex Ko
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rate My NYU Professors",
    "version": "1.3.7",
    "description": "Display the ratings of each professor for your classes on Albert!",
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/search-production.ratemyprofessors.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "https:\/\/sis.portal.nyu.edu\/*",
                "https:\/\/sis.portal.nyu.edu\/"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/nyu_logo-16.png",
        "36": "images\/nyu_logo-36.png",
        "48": "images\/nyu_logo-48.png",
        "128": "images\/nyu_logo-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "tooltip.css",
                "fonts\/Lato-SemiboldItalic.ttf",
                "fonts\/Lato-Regular.ttf"
            ],
            "matches": [
                "https:\/\/sis.nyu.edu\/*"
            ]
        }
    ],
    "manifest_version": 3
}