NJIT Schedule Builder RMP

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

Apa itu NJIT Schedule Builder RMP?

NJIT Schedule Builder RMP adalah ekstensi Chrome yang dikembangkan oleh vineethedev, dan fitur utamanya adalah "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi NJIT Schedule Builder RMP

Unduh file ekstensi NJIT Schedule Builder RMP dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama NJIT Schedule Builder RMP NJIT Schedule Builder RMP
ID gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
URL Resmi https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
Deskripsi An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
Ukuran File 32.51 KB
Jumlah Instalasi 1,263
Versi Saat Ini 1.5
Terakhir Diperbarui 2022-12-23
Tanggal Publikasi 2020-09-01
Penilaian 5.00/5 Total 9 Penilaian
Pengembang vineethedev
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://uisapppr3.njit.edu/scbldr/
Bahasa yang Didukung 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"
        }
    ]
}