EasySmartView

An extension for Blackboard that allows you to quickly select students for SmartView creation.

O que é EasySmartView?

EasySmartView é uma extensão do Chrome desenvolvida por Sean Pianka, e sua principal característica é "An extension for Blackboard that allows you to quickly select students for SmartView creation.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão EasySmartView

Baixe arquivos de extensão EasySmartView no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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.                    

Informações Básicas da Extensão

Nome EasySmartView EasySmartView
ID bgcahmhbhhmceobbojnljbbfgbdcdpfo
URL Oficial https://chromewebstore.google.com/detail/easysmartview/bgcahmhbhhmceobbojnljbbfgbdcdpfo
Descrição An extension for Blackboard that allows you to quickly select students for SmartView creation.
Tamanho do Arquivo 69.77 KB
Contagem de Instalações 66
Versão Atual 1.1.2
Última Atualização 2017-01-27
Data de Publicação 2017-01-26
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Sean Pianka
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/seanpianka/EasySmartView
URL da Página de Ajuda https://github.com/seanpianka/EasySmartView/issues
Idiomas Suportados 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"
        }
    ]
}