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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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 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
Eメール [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"
        ]
    }
}