Gradescope Add to Calendar
Adds a add to calendar button to all student assignments on Gradescope.
Gradescope Add to Calendar क्या है?
Gradescope Add to Calendar calvinaatian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a add to calendar button to all student assignments on Gradescope."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gradescope Add to Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Gradescope Add to Calendar Button Source available on https://github.com/calvinatian/gradescope-add-to-calendar-button Adds a button to create calendar events next to all Gradescope assignments. Uses https://github.com/add2cal/add-to-calendar-button to generate links. Currently: - Adds calendar button to all courses user is enrolled in as a student on gradescope.com - Button to the right of date column - Default styling on calendar button
एक्सटेंशन की मूल जानकारी
नाम | Gradescope Add to Calendar |
ID | bdbeeblaipbingbdhkgmkoefpfolpjmg |
आधिकारिक URL | https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg |
विवरण | Adds a add to calendar button to all student assignments on Gradescope. |
फ़ाइल का आकार | 60 KB |
स्थापना संख्या | 333 |
वर्तमान संस्करण | 0.0.5 |
अंतिम अपडेट | 2023-01-27 |
प्रकाशन तिथि | 2022-11-30 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | calvinaatian |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/calvinatian/gradescope-add-to-calendar-button |
सहायता पृष्ठ URL | https://github.com/calvinatian/gradescope-add-to-calendar-button/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gradescope Add to Calendar", "version": "0.0.5", "description": "Adds a add to calendar button to all student assignments on Gradescope.", "icons": { "16": "assets\/icons\/16x16.png", "32": "assets\/icons\/32x32.png", "48": "assets\/icons\/48x48.png", "128": "assets\/icons\/128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.gradescope.com\/courses\/*" ], "css": [ "assets\/css\/calendar.css", "assets\/add-to-calendar-button\/atcb.min.css" ], "js": [ "gradescope_calendar_button.js", "assets\/add-to-calendar-button\/atcb.min.js" ] } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.gradescope.com\/*" ], "resources": [ "assets\/add-to-calendar-button\/atcb.min.js", "assets\/add-to-calendar-button\/atcb.min.css", "assets\/css\/button.css" ] } ] } |