Bournemouth University Timetable Downloader

Bournemouth University Timetable .ics Converter & Downloader.

Was ist Bournemouth University Timetable Downloader?

Bournemouth University Timetable Downloader ist eine Chrome-Erweiterung, die von Josh Kelley entwickelt wurde, und ihr Hauptmerkmal ist "Bournemouth University Timetable .ics Converter & Downloader.".

Erweiterungsscreenshots

screenshot
screenshot

Bournemouth University Timetable Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bournemouth University Timetable Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Want to access the Bournemouth University timetable for your lectures and seminars but would rather use your own calendar app instead of the timetable website or iBU? Want to be able to access your timetable from Siri, Alexa, or Google Home?

Me too! So I made this extension.
This extension converts timetable events from the timetable website into an .ics file for use in your own calendar apps!

Usage:
1. Go to timetable.bournemouth.ac.uk, and log in if required.
2. (Optional) Click 'Month', 'Week', or 'Day' to select the range of events to download.
3. Click the 'Download' button in the toolbar on the right.

Alternatively, click on a single timetable event and click 'Download' to download just that event.

Important Information:
This extension is unofficial and in no way supported or endorsed by Bournemouth University.
I am a student (s5208752) who made this extension for my own use, and I am sharing it here because I want others to be able to use it too.

Version History:

Verision 1.4 (19th October 2020)
• Rewrote the entire extension from the ground up to improve speed, reliability, and functionality.
• Added a 'Download' button to the toolbar on the right side of the screen.
• Added the ability to download multiple events without entering List View.

Version 1.3 (29th February 2020)
• Added more data to the .ics files to make them RFC 5545 compliant.
• Fixed a bug which stopped 'Day' from processing in 'List View'.
• Fixed a bug which allowed downloading with nothing selected.

Version 1.2 (12th December 2019)
• Added the ability to download data from lecturer timetables.
• Modified the text formatting to capitalise words like "UG", "PG", "BU", etc.

Version 1.1.3 (10th December 2019)
• Fixed a bug where, in rare cases, the "Week" List View would not process any data.

Version 1.1.2 (7th December 2019)
• Fixed a bug where occasionally the downloaded file would be incompatible with Apple's Calendar app.

Version 1.1.1 (18th November 2019)
• Fixed a bug where events without a lecturer would have the description "Lecturer:".

Version 1.1 (19th October 2019)
• Added the ability to download multiple timetable events at once, up to a whole month.

Version 1.0 (6th October 2019)
• Extension created and uploaded to Chrome Web Store.                    

Grundlegende Informationen zur Erweiterung

Name Bournemouth University Timetable Downloader Bournemouth University Timetable Downloader
ID mjffbbhllnhhbhjgljmkadamfpoifdno
Offizielle URL https://chrome.google.com/webstore/detail/bournemouth-university-ti/mjffbbhllnhhbhjgljmkadamfpoifdno
Beschreibung Bournemouth University Timetable .ics Converter & Downloader.
Dateigröße 35.72 KB
Installationsanzahl 47
Aktuelle Version 1.4
Letztes Update 2020-10-19
Veröffentlichungsdatum 2019-12-12
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler Josh Kelley
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bournemouth University Timetable Downloader",
    "version": "1.4",
    "description": "Bournemouth University Timetable .ics Converter & Downloader.",
    "manifest_version": 2,
    "author": "Joshua Kelley",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/timetable.bournemouth.ac.uk\/*"
            ],
            "run_at": "document_start",
            "js": [
                "injector.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "injector.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "content.js",
        "images\/BC128White.png"
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "images\/BC16.png",
        "48": "images\/BC48.png",
        "128": "images\/BC128.png"
    },
    "browser_action": {
        "default_title": "BU Timetable Downloader"
    }
}