Bournemouth University Timetable Downloader

Bournemouth University Timetable .ics Converter & Downloader.

什麼是Bournemouth University Timetable Downloader?

Bournemouth University Timetable Downloader是由Josh Kelley開發的Chrome擴展程式,該擴展的主要功能是“Bournemouth University Timetable .ics Converter & Downloader.”。

擴展截圖

screenshot
screenshot

下載Bournemouth University Timetable Downloader擴展crx文件

下載Bournemouth University Timetable Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Bournemouth University Timetable Downloader Bournemouth University Timetable Downloader
ID mjffbbhllnhhbhjgljmkadamfpoifdno
官方網址 https://chrome.google.com/webstore/detail/bournemouth-university-ti/mjffbbhllnhhbhjgljmkadamfpoifdno
簡介 Bournemouth University Timetable .ics Converter & Downloader.
檔案大小 35.72 KB
安裝次數 47
目前版本 1.4
更新時間 2020-10-19
上架時間 2019-12-12
評分 4.67/5 共 3 次評分
開發者 Josh Kelley
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}