NJIT Schedule Builder Profiles
This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.
Τι είναι το NJIT Schedule Builder Profiles;
Το NJIT Schedule Builder Profiles είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ben.extensions, και η κύρια λειτουργία του είναι "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NJIT Schedule Builder Profiles
Λήψη αρχείων επέκτασης NJIT Schedule Builder Profiles σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Schedule Builder Profiles allows the user to save plans on the schedule builder website for New Jersey Institute of Technology (NJIT). With this chrome extension installed, schedules can be stored and brought back at the click of a button. This allows multiple schedules to be planned in tandem, without the need to rebuild. This extension was made by Benjamin Shuster, and is not supported by NJIT. Please do not contact NJIT for support.
Βασικές Πληροφορίες Επέκτασης
Όνομα | NJIT Schedule Builder Profiles |
ID | pmnpckcmdalibabddocfiabejkbmcanp |
Επίσημο URL | https://chromewebstore.google.com/detail/njit-schedule-builder-pro/pmnpckcmdalibabddocfiabejkbmcanp |
Περιγραφή | This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. |
Μέγεθος Αρχείου | 59.87 KB |
Αριθμός Εγκαταστάσεων | 82 |
Τρέχουσα Έκδοση | 0.0.2 |
Τελευταία Ενημέρωση | 2022-05-19 |
Ημερομηνία Δημοσίευσης | 2022-03-30 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | ben.extensions |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/bentzi-shuster/NJIT-Schedule-Builder-Profiles |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NJIT Schedule Builder Profiles", "manifest_version": 3, "version": "0.0.2", "permissions": [ "storage", "tabs", "clipboardWrite" ], "description": "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. ", "background": { "service_worker": "background.js" }, "action": { "default_popup": "\/popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/uisapppr3.njit.edu\/scbldr\/" ], "js": [ "content.js" ] } ], "icons": { "128": "images\/128.png", "48": "images\/48.png", "16": "images\/16.png" } } |