NJIT Schedule Builder RMP
An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
Cos'è NJIT Schedule Builder RMP?
NJIT Schedule Builder RMP è un'estensione di Chrome sviluppata da vineethedev, e la sua funzione principale è "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NJIT Schedule Builder RMP
Scarica i file di estensione NJIT Schedule Builder RMP in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | NJIT Schedule Builder RMP |
ID | gbhlckmcjkpdhgkpbmkabcedbhjjpmbo |
URL Ufficiale | https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo |
Descrizione | An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website. |
Dimensione del File | 32.51 KB |
Conteggio Installazioni | 1,263 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2022-12-23 |
Data di Pubblicazione | 2020-09-01 |
Valutazione | 5.00/5 Totale 9 Valutazioni |
Sviluppatore | vineethedev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://uisapppr3.njit.edu/scbldr/ |
Lingue Supportate | 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" } ] } |