Banner GCal Schedule Importer

Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay

What is Banner GCal Schedule Importer?

Banner GCal Schedule Importer is a Chrome extension developed by https://abelw.io, and its main feature is "Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay".

Extension Screenshots

screenshot
screenshot
screenshot

Download Banner GCal Schedule Importer Extension CRX File

Download Banner GCal Schedule Importer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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].                    

Extension Basic Information

Name Banner GCal Schedule Importer Banner GCal Schedule Importer
ID kecmgaogpplcgaldfeadlohpihlefcaj
Official URL https://chromewebstore.google.com/detail/banner-gcal-schedule-impo/kecmgaogpplcgaldfeadlohpihlefcaj
Description Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay
File Size 403 KB
Installation Count 484
Current Version 1.05
Last Updated 2022-12-26
Publish Date 2020-06-12
Rating 4.75/5 Total 4 Ratings
Developer https://abelw.io
Email [email protected]
Payment Type free
Extension Website https://abelweldaregay.github.io/Banner-GCal-Schedule-Importer/
Help Page URL https://abelweldaregay.github.io/Banner-GCal-Schedule-Importer/help
Supported Languages 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"
        ]
    }
}