GOLD Calendar
Easily add your academic schedule to your calendar program of choice!
Co to jest GOLD Calendar?
GOLD Calendar to rozszerzenie Chrome opracowane przez rt.waltman, a jego główną funkcją jest „Easily add your academic schedule to your calendar program of choice!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GOLD Calendar
Pobierz pliki rozszerzeń GOLD Calendar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bcoocjebknnbkafliolenjhmgidfmhib |
Oficjalny URL | https://chromewebstore.google.com/detail/gold-calendar/bcoocjebknnbkafliolenjhmgidfmhib |
Opis | Easily add your academic schedule to your calendar program of choice! |
Rozmiar pliku | 53.95 KB |
Liczba instalacji | 74 |
Aktualna Wersja | 1.11 |
Ostatnia Aktualizacja | 2016-01-03 |
Data Publikacji | 2016-01-03 |
Ocena | 4.60/5 Łącznie 5 Oceny |
Deweloper | rt.waltman |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/rtwaltman/GOLDCalendar |
Adres URL Strony Pomocy | https://github.com/rtwaltman/GOLDCalendar |
Obsługiwane Języki | 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" ] } ] } |