Banner GCal Schedule Importer
Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay
Banner GCal Schedule Importer क्या है?
Banner GCal Schedule Importer https://abelw.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Banner GCal Schedule Importer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tired of manually creating a new calendar for your courses every single semester? Look no further! This chrome extension will pull the data from your banner (after you navigate to the schedule details page) and create a google calendar for you, filled with your semester's schedule! You can also remove courses you do not want to import/export in the preview page! You can also export your class schedule as an .ics file and import it to google calendar, Microsoft outlook calendar, or any calendar of your choice! This works for all schools that use the banner and works for spring, fall, and summer courses! 1000+ schedules imported/exported & counting! This project was inspired by the UMD GCal Schedule Importer If you find any bugs, please contact [email protected].
एक्सटेंशन की मूल जानकारी
नाम | Banner GCal Schedule Importer |
ID | kecmgaogpplcgaldfeadlohpihlefcaj |
आधिकारिक URL | https://chromewebstore.google.com/detail/banner-gcal-schedule-impo/kecmgaogpplcgaldfeadlohpihlefcaj |
विवरण | Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay |
फ़ाइल का आकार | 403 KB |
स्थापना संख्या | 484 |
वर्तमान संस्करण | 1.05 |
अंतिम अपडेट | 2022-12-26 |
प्रकाशन तिथि | 2020-06-12 |
रेटिंग | 4.75/5 कुल 4 रेटिंग्स |
डेवलपर | https://abelw.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://abelweldaregay.github.io/Banner-GCal-Schedule-Importer/ |
सहायता पृष्ठ URL | https://abelweldaregay.github.io/Banner-GCal-Schedule-Importer/help |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Banner GCal Schedule Importer", "description": "Chrome Extension that imports your class schedule directly into a new Google Calendar. Created by Abel Weldaregay", "version": "1.05", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon19.png", "default_popup": "popup.html" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*", "http:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*" ], "js": [ "extract_schedule.js" ] } ], "permissions": [ "activeTab", "tabs", "identity", "https:\/\/ajax.googleapis.com\/*", "https:\/\/apis.google.com\/*", "http:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*", "https:\/\/xessb.odu.edu\/StudentRegistrationSsb\/ssb\/registrationHistory\/*", "https:\/\/apis.google.com\/*" ], "oauth2": { "client_id": "602578747140-lur38jmot2nb3ru6b60bisn6naegatln.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/calendar" ] }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "background": { "scripts": [ "background.js" ] } } |