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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UT Schedule Maker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } |