NJIT Schedule Builder RMP

An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.

Was ist NJIT Schedule Builder RMP?

NJIT Schedule Builder RMP ist eine Chrome-Erweiterung, die von vineethedev entwickelt wurde, und ihr Hauptmerkmal ist "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.".

Erweiterungsscreenshots

screenshot

NJIT Schedule Builder RMP-Erweiterungs-CRX-Datei herunterladen

Laden Sie NJIT Schedule Builder RMP-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows students to quickly view ratemyprofessor.com information on the NJIT Schedule Builder (https://uisapppr3.njit.edu/scbldr/). 

You can view the source code at https://github.com/Vineetsridhar/RMPExtension                    

Grundlegende Informationen zur Erweiterung

Name NJIT Schedule Builder RMP NJIT Schedule Builder RMP
ID gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
Offizielle URL https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
Beschreibung An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
Dateigröße 32.51 KB
Installationsanzahl 1,263
Aktuelle Version 1.5
Letztes Update 2022-12-23
Veröffentlichungsdatum 2020-09-01
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler vineethedev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://uisapppr3.njit.edu/scbldr/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NJIT Schedule Builder RMP",
    "version": "1.5",
    "description": "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.",
    "icons": {
        "16": "Icons\/icon16.png",
        "32": "Icons\/icon32.png",
        "48": "Icons\/icon48.png",
        "64": "Icons\/icon64.png",
        "100": "Icons\/icon100.png",
        "128": "Icons\/icon128.png",
        "200": "Icons\/icon200.png"
    },
    "manifest_version": 2,
    "permissions": [
        "https:\/\/uisapppr3.njit.edu\/scbldr\/+"
    ],
    "browser_action": {
        "default_icon": "Icons\/icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/uisapppr3.njit.edu\/scbldr\/"
            ],
            "run_at": "document_end"
        }
    ]
}