Learn Enhancer

Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…

O que é Learn Enhancer?

Learn Enhancer é uma extensão do Chrome desenvolvida por willhbr, e sua principal característica é "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Learn Enhancer

Baixe arquivos de extensão Learn Enhancer 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

                        Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard.

It does this by opening PDF files full screen, not in a sh*tty iframe that is only a quarter of your screen, meaning that you can see everything you're trying to do and work effectively.

Not affiliated with Moodle, Blackboard, Victoria University or UC.                    

Informações Básicas da Extensão

Nome Learn Enhancer Learn Enhancer
ID dnllhgllbbihefjdpamldjnlpllogkcf
URL Oficial https://chromewebstore.google.com/detail/learn-enhancer/dnllhgllbbihefjdpamldjnlpllogkcf
Descrição Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…
Tamanho do Arquivo 17.18 KB
Contagem de Instalações 226
Versão Atual 2.1.1
Última Atualização 2018-07-21
Data de Publicação 2018-07-20
Classificação 4.83/5 Total de 23 Avaliações
Desenvolvedor willhbr
Tipo de Pagamento free
Site da Extensão https://github.com/willhbr/learn-enhancer
URL da Página de Ajuda https://github.com/willhbr/learn-enhancer/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Learn Enhancer",
    "version": "2.1.1",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/learn.canterbury.ac.nz\/*",
                "https:\/\/learn.canterbury.ac.nz\/*"
            ],
            "js": [
                "pranks.js",
                "content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/login.canterbury.ac.nz\/idp\/Authn\/UserPassword"
            ],
            "js": [
                "login.js"
            ],
            "css": [
                "login.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/learn.canterbury.ac.nz\/*",
                "https:\/\/learn.canterbury.ac.nz\/*"
            ],
            "exclude_matches": [
                "http:\/\/learn.canterbury.ac.nz\/pluginfile.php\/*",
                "https:\/\/learn.canterbury.ac.nz\/pluginfile.php\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequestBlocking",
        "webRequest",
        "storage",
        "http:\/\/learn.canterbury.ac.nz\/*",
        "https:\/\/login.canterbury.ac.nz\/idp\/Authn\/UserPassword"
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "options_page": "options.html"
}