Bournemouth University Timetable Downloader

Bournemouth University Timetable .ics Converter & Downloader.

Wat is Bournemouth University Timetable Downloader?

Bournemouth University Timetable Downloader is een Chrome-extensie ontwikkeld door Josh Kelley, en de belangrijkste functie is "Bournemouth University Timetable .ics Converter & Downloader.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Bournemouth University Timetable Downloader

Download Bournemouth University Timetable Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Bournemouth University Timetable Downloader Bournemouth University Timetable Downloader
ID mjffbbhllnhhbhjgljmkadamfpoifdno
Officiële URL https://chrome.google.com/webstore/detail/bournemouth-university-ti/mjffbbhllnhhbhjgljmkadamfpoifdno
Beschrijving Bournemouth University Timetable .ics Converter & Downloader.
Bestandsgrootte 35.72 KB
Aantal Installaties 47
Huidige Versie 1.4
Laatst Bijgewerkt 2020-10-19
Publicatiedatum 2019-12-12
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Josh Kelley
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}