UMich Course Calendar

UMich Class Schedule to Calendar Export Tool

UMich Course Calendarคืออะไร?

UMich Course Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matthew.harkness519 และคุณลักษณะหลักของมันคือ "UMich Class Schedule to Calendar Export Tool"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UMich Course Calendar

ดาวน์โหลดไฟล์ส่วนขยาย UMich Course Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is an updated version of a project by Yichen Zhao and Zhan Wang. Find the original version here:
https://chrome.google.com/webstore/detail/umich-course-calendar/fhfpkhcphbkjhdckeedogbpnafjdkmhm

This extension is designed to simplify the task of exporting University of Michigan class schedules to Google Calendar. With this extension, you will have no problem figuring out when and where your lecture and discussion sections start from the first day of each semester. No more fumbling with your phone to get Wolverine Access from your phone; you can have all the information you need synchronized to your calendar.

Please note: This extension injects HTML code and JavaScript logic into your Wolverine Access pages only for the purpose of displaying an interface allowing you to export your class schedule. It reads data from your class schedule page and generates a corresponding iCalendar (ical) file. This extension does not store, transmit, or use in any other way as described above your personal information. By installing this extension you are consenting to the above modification and use of your Wolverine Access pages.

Disclaimer:
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ UMich Course Calendar UMich Course Calendar
ID bjmnahkhkillpfpjhbjjjnpjchgodbdj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/umich-course-calendar/bjmnahkhkillpfpjhbjjjnpjchgodbdj
คำอธิบาย UMich Class Schedule to Calendar Export Tool
ขนาดไฟล์ 147 KB
จำนวนการติดตั้ง 1,565
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2021-06-22
วันที่เผยแพร่ 2021-06-20
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา matthew.harkness519
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMich Course Calendar",
    "description": "UMich Class Schedule to Calendar Export Tool",
    "version": "0.5",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/csprod.dsc.umich.edu\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/csprod.dsc.umich.edu\/psc\/csprodnonop\/EMPLOYEE\/SA\/*"
            ],
            "js": [
                "angular.min.js",
                "course-calendar.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "extension-style.css",
        "angular.min.js.map",
        "download-panel.html",
        "program-icon.png"
    ],
    "browser_action": {
        "default_icon": "program-icon.png",
        "default_title": "Download your class schedules calendar"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "homepage_url": "http:\/\/www-personal.umich.edu\/~zhaoyich\/projects\/coursecalendar\/"
}