EasySmartView
An extension for Blackboard that allows you to quickly select students for SmartView creation.
EasySmartViewとは何ですか?
EasySmartViewはSean Piankaによって開発されたChromeの拡張機能で、その主な機能は「An extension for Blackboard that allows you to quickly select students for SmartView creation.」です。
拡張機能のスクリーンショット
EasySmartView拡張機能のCRXファイルをダウンロード
EasySmartView拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
# 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 |
Eメール | [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" } ] } |