Schedule Builder Export
This extension allows exporting from UC Davis Schedule Builder to Google Calendar.
Τι είναι το Schedule Builder Export;
Το Schedule Builder Export είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Kramer, και η κύρια λειτουργία του είναι "This extension allows exporting from UC Davis Schedule Builder to Google Calendar.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Schedule Builder Export
Λήψη αρχείων επέκτασης Schedule Builder Export σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension inserts an "Export" button into the Schedule Builder webpage. Clicking on the export button after finalizing a schedule will import the schedule into Google Calendar. Please read the instructions at https://github.com/aklreaxmer/schedule-builder-export. Feel free to contribute to the code! You must be signed into Chrome (not Google) using your desired account for this extension to work.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Schedule Builder Export |
ID | dahicfbjacnkkdhphlloeeaadkenloaf |
Επίσημο URL | https://chromewebstore.google.com/detail/schedule-builder-export/dahicfbjacnkkdhphlloeeaadkenloaf |
Περιγραφή | This extension allows exporting from UC Davis Schedule Builder to Google Calendar. |
Μέγεθος Αρχείου | 43.18 KB |
Αριθμός Εγκαταστάσεων | 4,195 |
Τρέχουσα Έκδοση | 1.5 |
Τελευταία Ενημέρωση | 2020-06-15 |
Ημερομηνία Δημοσίευσης | 2020-06-15 |
Αξιολόγηση | 4.35/5 Συνολικά 20 Αξιολογήσεις |
Προγραμματιστής | Alex Kramer |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/aklreaxmer/schedule-builder-export |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Schedule Builder Export", "description": "This extension allows exporting from UC Davis Schedule Builder to Google Calendar.", "version": "1.5", "icons": { "16": "icon16.png", "48": "icon16.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/my.ucdavis.edu\/schedulebuilder\/index.cfm?*" ], "js": [ "jquery.js", "inject_button.js" ] } ], "background": { "page": "background.html", "persistent": false }, "permissions": [ "https:\/\/my.ucdavis.edu\/schedulebuilder\/*", "https:\/\/apis.google.com\/js\/*", "identity" ], "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAltDCFvc4oUGWOkEisZiZqgvoaghTykk47atmJyM44C9hpphnLIHWDy3C4z76MKTLqzQXN1H6hhcVqdURvVP2FWz0IN5WyUiDfw3E4XIDgnzNRaQ3+1p8cjU2PvSfmcgYR+hb\/e\/Mm+rNGK1yWYNaF6LkmXI70E76B8404qOql2SdYJxvba8mMJG4p253fGiuLs36UO\/w2D7guSA\/+lXbWkSZlCZ\/7x7iA9iN6Q4nCAVBpM+btLwNUHmuRHVVyoeueCStkVcqwXljhIjh\/8tm\/l8RNV+sAAjgmehY1yawjkPuyg3zCxMQ31c2lGJA5sc3oH7Umo0TRxolGzUve\/XVZwIDAQAB", "oauth2": { "client_id": "502982538310-vr27ue5j4ptn0rqc6eulmdcv3fe0gp7p.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar" ] }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'" } |