Bournemouth University Timetable Downloader

Bournemouth University Timetable .ics Converter & Downloader.

¿Qué es Bournemouth University Timetable Downloader?

Bournemouth University Timetable Downloader es una extensión de Chrome desarrollada por Josh Kelley, y su función principal es "Bournemouth University Timetable .ics Converter & Downloader.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Bournemouth University Timetable Downloader

Descarga archivos de extensión Bournemouth University Timetable Downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Bournemouth University Timetable Downloader Bournemouth University Timetable Downloader
ID mjffbbhllnhhbhjgljmkadamfpoifdno
URL Oficial https://chrome.google.com/webstore/detail/bournemouth-university-ti/mjffbbhllnhhbhjgljmkadamfpoifdno
Descripción Bournemouth University Timetable .ics Converter & Downloader.
Tamaño del Archivo 35.72 KB
Cantidad de Instalaciones 47
Versión Actual 1.4
Última Actualización 2020-10-19
Fecha de Publicación 2019-12-12
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador Josh Kelley
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}