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 |
官方網址 | 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" } ] } |