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文件
下載Banner GCal Schedule Importer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } } |