NJIT Schedule Builder RMP

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

What is NJIT Schedule Builder RMP?

NJIT Schedule Builder RMP is a Chrome extension developed by vineethedev, and its main feature is "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.".

Extension Screenshots

screenshot

Download NJIT Schedule Builder RMP Extension CRX File

Download NJIT Schedule Builder RMP extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name NJIT Schedule Builder RMP NJIT Schedule Builder RMP
ID gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
Official URL https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
Description An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
File Size 32.51 KB
Installation Count 1,263
Current Version 1.5
Last Updated 2022-12-23
Publish Date 2020-09-01
Rating 5.00/5 Total 9 Ratings
Developer vineethedev
Email [email protected]
Payment Type free
Extension Website https://uisapppr3.njit.edu/scbldr/
Supported Languages 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"
        }
    ]
}