UT Schedule Maker
This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.
UT Schedule Makerとは何ですか?
UT Schedule MakerはNathan Orickによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.」です。
UT Schedule Maker拡張機能のCRXファイルをダウンロード
UT Schedule Maker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Every semester, its the same old headache. UT gives you a schedule that you can view online or download as a pdf. But a schedule in that format is just about as useful as a knife with no blade. So every time I get a new schedule, I spend 15 minutes adding each class, one-by-one, as an event to my calendar. This extension solves that problem! All you have to do is: 1. Install the extension. 2. Go to https://my.utk.edu and choose the schedule you'd like to download. 3. Click the UT Schedule Maker icon that should now appear next to your URL. 4. Get on with your life. For more detailed instructions, see https://github.com/cnorick/UTK-Schedule-Maker
拡張機能の基本情報
名前 | UT Schedule Maker |
ID | gfeghgchfgphpeemgblkgbjmmnbkeemk |
公式URL | https://chromewebstore.google.com/detail/ut-schedule-maker/gfeghgchfgphpeemgblkgbjmmnbkeemk |
説明 | This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click. |
ファイルサイズ | 44.48 KB |
インストール数 | 25 |
現在のバージョン | 1.0 |
最終更新日 | 2016-12-24 |
公開日 | 2016-12-21 |
開発者 | Nathan Orick |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/cnorick/UTK-Schedule-Maker |
ヘルプページのURL | https://github.com/cnorick/UTK-Schedule-Maker |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UT Schedule Maker", "description": "This extension allows you to transform your UT schedule (available at https:\/\/my.utk.edu) into a downloadable calendar in one click.", "version": "1.0", "background": { "scripts": [ "background.js", "moment.js", "ics.js", "helpers.js", "termDates.js" ], "persistent": false }, "icons": { "128": "icon.png" }, "author": "Nathan Orick ([email protected])", "page_action": { "default_title": "UT Schedule Maker" }, "permissions": [ "declarativeContent", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/my.utk.edu\/*", "https:\/\/myutk.utk.edu\/*" ], "js": [ "content.js" ] } ], "homepage_url": "https:\/\/github.com\/cnorick\/UTK-Schedule-Maker" } |