Learn Enhancer

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

Wat is Learn Enhancer?

Learn Enhancer is een Chrome-extensie ontwikkeld door willhbr, en de belangrijkste functie is "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Learn Enhancer

Download Learn Enhancer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Learn Enhancer Learn Enhancer
ID dnllhgllbbihefjdpamldjnlpllogkcf
Officiële URL https://chromewebstore.google.com/detail/learn-enhancer/dnllhgllbbihefjdpamldjnlpllogkcf
Beschrijving Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…
Bestandsgrootte 17.18 KB
Aantal Installaties 226
Huidige Versie 2.1.1
Laatst Bijgewerkt 2018-07-21
Publicatiedatum 2018-07-20
Beoordeling 4.83/5 Totaal 23 Beoordelingen
Ontwikkelaar willhbr
Betalingswijze free
Extensiewebsite https://github.com/willhbr/learn-enhancer
Help Pagina-URL https://github.com/willhbr/learn-enhancer/issues
Ondersteunde Talen 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"
}