Banner GCal Schedule Importer
Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay
Banner GCal Schedule Importer란 무엇입니까?
Banner GCal Schedule Importer은(는) https://abelw.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay"입니다.
확장 프로그램 스크린샷
Banner GCal Schedule Importer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of manually creating a new calendar for your courses every single semester? Look no further! This chrome extension will pull the data from your banner (after you navigate to the schedule details page) and create a google calendar for you, filled with your semester's schedule! You can also remove courses you do not want to import/export in the preview page! You can also export your class schedule as an .ics file and import it to google calendar, Microsoft outlook calendar, or any calendar of your choice! This works for all schools that use the banner and works for spring, fall, and summer courses! 1000+ schedules imported/exported & counting! This project was inspired by the UMD GCal Schedule Importer If you find any bugs, please contact [email protected].
확장 프로그램 기본 정보
이름 | Banner GCal Schedule Importer |
ID | kecmgaogpplcgaldfeadlohpihlefcaj |
공식 URL | https://chromewebstore.google.com/detail/banner-gcal-schedule-impo/kecmgaogpplcgaldfeadlohpihlefcaj |
설명 | Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay |
파일 크기 | 403 KB |
설치 횟수 | 484 |
현재 버전 | 1.05 |
최근 업데이트 | 2022-12-26 |
출시 날짜 | 2020-06-12 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | https://abelw.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://abelweldaregay.github.io/Banner-GCal-Schedule-Importer/ |
도움말 페이지 URL | https://abelweldaregay.github.io/Banner-GCal-Schedule-Importer/help |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Banner GCal Schedule Importer", "description": "Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay", "version": "1.05", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon19.png", "default_popup": "popup.html" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*", "http:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*" ], "js": [ "extract_schedule.js" ] } ], "permissions": [ "activeTab", "tabs", "identity", "https:\/\/ajax.googleapis.com\/*", "https:\/\/apis.google.com\/*", "http:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*", "https:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*", "https:\/\/apis.google.com\/*" ], "oauth2": { "client_id": "602578747140-lur38jmot2nb3ru6b60bisn6naegatln.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar" ] }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "background": { "scripts": [ "background.js" ] } } |