University of Guelph Website Enhancer

An extension to improve the University of Guelph webpages as we all know they could use some work.

University of Guelph Website Enhancer là gì?

University of Guelph Website Enhancer là một tiện ích mở rộng Chrome được phát triển bởi http://jhvisser.com, và tính năng chính của nó là "An extension to improve the University of Guelph webpages as we all know they could use some work.".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng University of Guelph Website Enhancer

Tải xuống các tệp mở rộng University of Guelph Website Enhancer 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

                        You can export your courses from the University of Guelph WebAdvisor page to an ical format using this Google Chrome Extension. The extension also now features some styling changes improving the look and feel of the website!

HOW TO USE:
1. Navigate to your webadvisor page (https://webadvisor.uoguelph.ca)
2. Go into the student portal and select your class schedule
3. Select the current term (only works for fall 2014 term right now!!!)
4. Click the "Export Schedule" button at the bottom by the "OK" button. This will allow you to export the .ical file. Checkout my webpage for more information:

http://jhvisser.com/guelph-schedule-exporter/

Report an issue at the following website:
https://github.com/Fogest/University-of-Guelph-Schedule-Exporter/issues/new

View open issues:
https://github.com/Fogest/University-of-Guelph-Schedule-Exporter/issues

Checkout the source:
https://github.com/Fogest/University-of-Guelph-Schedule-Exporter

------------------------------------------------

Changelog:
1.4.0:
- Adding in ability to fetch the terms so that it can work for any term now

1.3.2:
- Fixed error on trying to install extension
- Added transparency to the course outline so that you can see courses that may have a conflict (IE: overlapping) 

1.3.0:
- Swapped out all logo's and promo images, and added new promo screenshot. 
- Additional code in place to prepare for new features!

1.2.2:
- Fixed a date error, now actually works for Winter semester
- Distance education courses now no longer break the calendar exporting.

1.2.0:
- New styling changes.
- Updated to use new Winter course end date.

1.1.0:
- Now converts WebAdvisors building location abbreviations to their full names.
- Fixed an error in the manifest relating to "short_name" string.

1.1.0:
- Rebranding extension to "University of Guelph Website Enhancer".
- Course Schedule page now has some snazzy styling. 
- Added screenshot of new course page to this page.

1.0.2:
- End times now added.

1.0.1:
- Fixing package dependency error.

1.0.0:
- Fixing critical timing bug

0.0.1:
- Initial release                    

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

Tên University of Guelph Website Enhancer University of Guelph Website Enhancer
ID knnopdbgcchdkhchkoikbmffcjfmfjeh
URL Chính Thức https://chrome.google.com/webstore/detail/university-of-guelph-webs/knnopdbgcchdkhchkoikbmffcjfmfjeh
Mô tả An extension to improve the University of Guelph webpages as we all know they could use some work.
Kích Thước Tệp 62.86 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.4.0
Cập Nhật Lần Cuối 2015-03-19
Ngày Phát Hành 2015-03-19
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://jhvisser.com
Loại Thanh Toán free
Trang Web Mở Rộng http://jhvisser.com/guelph-schedule-exporter/
URL Trang Trợ Giúp http://jhvisser.com/guelph-schedule-exporter/
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "University of Guelph Website Enhancer",
    "short_name": "UoG Enhancer",
    "version": "1.4.0",
    "description": "An extension to improve the University of Guelph webpages as we all know they could use some work.",
    "permissions": [
        "https:\/\/webadvisor.uoguelph.ca\/",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "resources\/terms.json"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/webadvisor.uoguelph.ca\/*",
                "*:\/\/jhvisser.com\/*"
            ],
            "js": [
                "resources\/jquery-2.1.1.min.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "all_frames": true
        }
    ]
}