GOLD Calendar
Easily add your academic schedule to your calendar program of choice!
GOLD Calendar란 무엇입니까?
GOLD Calendar은(는) rt.waltman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily add your academic schedule to your calendar program of choice!"입니다.
확장 프로그램 스크린샷
GOLD Calendar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |