GOLD Calendar
Easily add your academic schedule to your calendar program of choice!
Τι είναι το GOLD Calendar;
Το GOLD Calendar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rt.waltman, και η κύρια λειτουργία του είναι "Easily add your academic schedule to your calendar program of choice!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GOLD Calendar
Λήψη αρχείων επέκτασης GOLD Calendar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
GOLD Calendar adds a convenient 'Export Schedule' button to the 'My Class Schedule' page on GOLD. When clicked, a *.ics (iCalendar format) file containing your academic schedule will download. Import this *.ics file to your calendar of choice (such as Mac OSX Calendar or Google Calendar). Please report any issues or bugs that you may find, as I have had limited GOLD accounts to test with. Created By: Richard Waltman
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | bcoocjebknnbkafliolenjhmgidfmhib |
Επίσημο URL | https://chromewebstore.google.com/detail/gold-calendar/bcoocjebknnbkafliolenjhmgidfmhib |
Περιγραφή | Easily add your academic schedule to your calendar program of choice! |
Μέγεθος Αρχείου | 53.95 KB |
Αριθμός Εγκαταστάσεων | 74 |
Τρέχουσα Έκδοση | 1.11 |
Τελευταία Ενημέρωση | 2016-01-03 |
Ημερομηνία Δημοσίευσης | 2016-01-03 |
Αξιολόγηση | 4.60/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | rt.waltman |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/rtwaltman/GOLDCalendar |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/rtwaltman/GOLDCalendar |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GOLD Calendar", "version": "1.11", "author": "Richard Waltman", "description": "Easily add your academic schedule to your calendar program of choice!", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon38.png", "default_popup": "popup.html", "default_title": "GOLD Calendar" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/my.sa.ucsb.edu\/gold\/StudentSchedule.aspx" ], "js": [ "icsBuilder.js", "FileSaver.min.js", "course.js", "main.js" ], "css": [ "button.css" ] } ] } |