Berkeley Schedule Exporter

Export your Berkeley class schedule!

Cos'è Berkeley Schedule Exporter?

Berkeley Schedule Exporter è un'estensione di Chrome sviluppata da berkeleyschedexport, e la sua funzione principale è "Export your Berkeley class schedule!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Berkeley Schedule Exporter

Scarica i file di estensione Berkeley Schedule Exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Export your Berkeley class schedule to .ics! (which can be imported to Google Calendar). Should also work with other schools that use collegescheduler.com.

https://github.com/ziyaointl/Schedule-Exporter

Usage

1. Go to CalCentral, My Academics. Select Schedule Planner.

2. Check the courses you want to export. You can select from both Current Schedule and Shopping Cart.

3. Click on the extension icon in the upper right Chrome menu. (You might have to wait a few seconds for the page to fully load before clicking on the icon). You should get a file named calendar.ics. Then, you can import this ics file to whatever calendar platform you desire. Classes automatically repeat weekly starting from the first day of the current semester!                    

Informazioni di Base sull'Estensione

Nome Berkeley Schedule Exporter Berkeley Schedule Exporter
ID adnjnncenfmhbfaggmchmfelhbafbkmn
URL Ufficiale https://chrome.google.com/webstore/detail/berkeley-schedule-exporte/adnjnncenfmhbfaggmchmfelhbafbkmn
Descrizione Export your Berkeley class schedule!
Dimensione del File 1.1 MB
Conteggio Installazioni 929
Versione Corrente 1.2.4
Ultimo Aggiornamento 2023-02-26
Data di Pubblicazione 2020-01-15
Valutazione 4.28/5 Totale 18 Valutazioni
Sviluppatore berkeleyschedexport
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ziyaointl/Schedule-Exporter
URL della Pagina di Aiuto https://github.com/ziyaointl/Schedule-Exporter/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Berkeley Schedule Exporter",
    "version": "1.2.4",
    "description": "Export your Berkeley class schedule!",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        }
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/export.js",
                "src\/icsjs\/ics.deps.min.js"
            ],
            "matches": [
                "https:\/\/berkeley.collegescheduler.com\/*"
            ]
        }
    ]
}