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."입니다.

확장 프로그램 스크린샷

screenshot

EasySmartView 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
        }
    ]
}