Bournemouth University Timetable Downloader

Bournemouth University Timetable .ics Converter & Downloader.

Bournemouth University Timetable Downloader là gì?

Bournemouth University Timetable Downloader là một tiện ích mở rộng Chrome được phát triển bởi Josh Kelley, và tính năng chính của nó là "Bournemouth University Timetable .ics Converter & Downloader.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bournemouth University Timetable Downloader

Tải xuống các tệp mở rộng Bournemouth University Timetable Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bournemouth University Timetable Downloader Bournemouth University Timetable Downloader
ID mjffbbhllnhhbhjgljmkadamfpoifdno
URL Chính Thức https://chrome.google.com/webstore/detail/bournemouth-university-ti/mjffbbhllnhhbhjgljmkadamfpoifdno
Mô tả Bournemouth University Timetable .ics Converter & Downloader.
Kích Thước Tệp 35.72 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2020-10-19
Ngày Phát Hành 2019-12-12
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Josh Kelley
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}