Get class schedule from webreg
This extension will download the class schedule in ics format.
什麼是Get class schedule from webreg?
Get class schedule from webreg是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension will download the class schedule in ics format.”。
擴展截圖
下載Get class schedule from webreg擴展crx文件
下載Get class schedule from webreg擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Note: this extension is for UCSD students only! This chrome extension enables you to generate a calendar file of your class schedule on webreg. The file is compatible with the common calendar software: google calendar, apple calendar, etc. You need to log in webreg before you can use it. Please help me improve it. https://github.com/plrectco/GetCalendar
擴展基本資訊
名稱 | Get class schedule from webreg |
ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
官方網址 | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
簡介 | This extension will download the class schedule in ics format. |
檔案大小 | 18.21 KB |
安裝次數 | 13 |
目前版本 | 1.0 |
更新時間 | 2018-01-17 |
上架時間 | 2018-01-16 |
開發者 | Unknown |
付費類型 | free |
擴展官網 | https://github.com/plrectco/GetCalendar |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Get class schedule from webreg", "description": "This extension will download the class schedule in ics format.", "version": "1.0", "permissions": [ "activeTab" ], "browser_action": { "default_title": "Download the class schedule", "default_popup": "popup.html", "default_icon": "icon.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/act.ucsd.edu\/*" ], "js": [ "ics.deps.min.js", "ics1.js", "script.js" ] } ] } |