EasySmartView
An extension for Blackboard that allows you to quickly select students for SmartView creation.
Qu'est-ce que EasySmartView ?
EasySmartView est une extension Chrome développée par Sean Pianka, et sa fonction principale est "An extension for Blackboard that allows you to quickly select students for SmartView creation.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension EasySmartView
Téléchargez les fichiers d'extension EasySmartView au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
# 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. Informations de Base sur l'Extension
| Nom | |
| ID | bgcahmhbhhmceobbojnljbbfgbdcdpfo |
| URL Officiel | https://chromewebstore.google.com/detail/easysmartview/bgcahmhbhhmceobbojnljbbfgbdcdpfo |
| Description | An extension for Blackboard that allows you to quickly select students for SmartView creation. |
| Taille du Fichier | 69.77 KB |
| Nombre d'Installations | 66 |
| Version Actuelle | 1.1.2 |
| Dernière Mise à Jour | 2017-01-27 |
| Date de Publication | 2017-01-26 |
| Évaluation | 5.00/5 Total 1 Évaluations |
| Développeur | Sean Pianka |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://github.com/seanpianka/EasySmartView |
| URL de la Page d'Aide | https://github.com/seanpianka/EasySmartView/issues |
| Langues Prises en Charge | 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"
}
]
} | |