Get class schedule from webreg
This extension will download the class schedule in ics format.
Τι είναι το Get class schedule from webreg;
Το Get class schedule from webreg είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This extension will download the class schedule in ics format.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Get class schedule from webreg
Λήψη αρχείων επέκτασης Get class schedule from webreg σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Note: this extension is for UCSD students only! This chrome extension enables you to generate a calendar file of your class schedule on webreg. The file is compatible with the common calendar software: google calendar, apple calendar, etc. You need to log in webreg before you can use it. Please help me improve it. https://github.com/plrectco/GetCalendar
Βασικές Πληροφορίες Επέκτασης
Όνομα | Get class schedule from webreg |
ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
Επίσημο URL | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
Περιγραφή | This extension will download the class schedule in ics format. |
Μέγεθος Αρχείου | 18.21 KB |
Αριθμός Εγκαταστάσεων | 13 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2018-01-17 |
Ημερομηνία Δημοσίευσης | 2018-01-16 |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/plrectco/GetCalendar |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Get class schedule from webreg", "description": "This extension will download the class schedule in ics format.", "version": "1.0", "permissions": [ "activeTab" ], "browser_action": { "default_title": "Download the class schedule", "default_popup": "popup.html", "default_icon": "icon.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/act.ucsd.edu\/*" ], "js": [ "ics.deps.min.js", "ics1.js", "script.js" ] } ] } |