Blackboard Enhancement Suite

Various layout and style changes intended to improve the usability of Blackboard

O que é Blackboard Enhancement Suite?

Blackboard Enhancement Suite é uma extensão do Chrome desenvolvida por https://devinrousso.com, e sua principal característica é "Various layout and style changes intended to improve the usability of Blackboard".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Blackboard Enhancement Suite

Baixe arquivos de extensão Blackboard Enhancement Suite 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

                        If you like this extension and want it to work with your school, create an issue on the support page and I will do my best to make it work.

Version 1.3.0:
 - A settings page has now been added to let you choose between making the "List View" or "Tree View" default in the Forum/Discussion page

Version 1.2.0:
 - Added support for all schools matching "blackboard.___.edu" and "bb.___.edu"
 - Added support for versions that don't use frames

Version 1.1.0:
 - Opening classes in new tabs now preserves the navigational header

Version 1.0.0:
 - Created extension
 - Currently supported schools: USC
 - Logo in top left corner will now reload current page instead of opening Blackboard in a new tab
 - Past courses (under My Courses Plus module) will be hidden from immediate sight and can be accessed by clicking the "Show Past Courses" link                    

Informações Básicas da Extensão

Nome Blackboard Enhancement Suite Blackboard Enhancement Suite
ID mbmniljdacmobchkdodbbimnnfemgjda
URL Oficial https://chromewebstore.google.com/detail/blackboard-enhancement-su/mbmniljdacmobchkdodbbimnnfemgjda
Descrição Various layout and style changes intended to improve the usability of Blackboard
Tamanho do Arquivo 39.52 KB
Contagem de Instalações 8,108
Versão Atual 1.3
Última Atualização 2015-12-20
Data de Publicação 2015-12-19
Classificação 2.88/5 Total de 40 Avaliações
Desenvolvedor https://devinrousso.com
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/dcrousso/BlackboardEnhancementSuite/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.3",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.edu\/*",
                "https:\/\/*.edu\/*"
            ],
            "include_globs": [
                "https:\/\/bb.*.edu\/*",
                "http:\/\/bb.*.edu\/*",
                "https:\/\/blackboard.*.edu\/*",
                "http:\/\/blackboard.*.edu\/*"
            ],
            "js": [
                "scripts\/enhance.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "background": {
        "page": "html\/background.html",
        "persistent": false
    }
}