EasySmartView
An extension for Blackboard that allows you to quickly select students for SmartView creation.
EasySmartView क्या है?
EasySmartView Sean Pianka द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension for Blackboard that allows you to quickly select students for SmartView creation."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में EasySmartView एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
# EasySmartView An extension for BlackBoard's SmartView creator which allows you to quickly select students for your recitation section. ### Usage Simply install the extension and navigate to the SmartView creation page for your specific recitation section. Then, open the extension by clicking the icon (it's the FSU logo), and enter in your students' names in the following format: ``` Smith,John Doe,John Bohr,Niels Newton,Isaac Washington,George Planck,Max Ritchie,Dennis Stroustrup,Bjarne ``` If you weren't able to discern the format, it's: ``` lastname,firstname lastname,firstname lastname,firstname lastname,firstname lastname,firstname lastname,firstname ``` Then, simply click "Select Students", and the students for your recitation section should now be selected in the select form. ### License MIT License; do what you want with this and make whatever sort of modifications you'd like.
एक्सटेंशन की मूल जानकारी
नाम | EasySmartView |
ID | bgcahmhbhhmceobbojnljbbfgbdcdpfo |
आधिकारिक URL | https://chromewebstore.google.com/detail/easysmartview/bgcahmhbhhmceobbojnljbbfgbdcdpfo |
विवरण | An extension for Blackboard that allows you to quickly select students for SmartView creation. |
फ़ाइल का आकार | 69.77 KB |
स्थापना संख्या | 66 |
वर्तमान संस्करण | 1.1.2 |
अंतिम अपडेट | 2017-01-27 |
प्रकाशन तिथि | 2017-01-26 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Sean Pianka |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/seanpianka/EasySmartView |
सहायता पृष्ठ URL | https://github.com/seanpianka/EasySmartView/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "EasySmartView", "short_name": "EZSmartView", "version": "1.1.2", "description": "An extension for Blackboard that allows you to quickly select students for SmartView creation.", "author": "Sean Pianka", "homepage_url": "https:\/\/github.com\/seanpianka\/EasySmartView", "background": { "scripts": [ "js\/libs\/jquery-3.1.1.min.js", "js\/dialog.js", "js\/background.js" ] }, "browser_action": { "default_icon": "images\/icon_128.png", "default_title": "Smart View Student Selector" }, "permissions": [ "tabs", "activeTab", "storage", "*:\/\/*.campus.fsu.edu\/webapps\/gradebook\/do\/instructor\/addModifyCustomViews\/*", "*:\/\/*.extractpdf.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/campus.fsu.edu\/webapps\/gradebook\/do\/instructor\/addModifyCustomViews\/*", "*:\/\/*.extractpdf.com\/*" ], "js": [ "js\/libs\/jquery-3.1.1.min.js" ], "runs_at": "document_end" } ] } |