Learn Enhancer

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

What is Learn Enhancer?

Learn Enhancer is a Chrome extension developed by willhbr, and its main feature is "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…".

Extension Screenshots

screenshot
screenshot

Download Learn Enhancer Extension CRX File

Download Learn Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Learn Enhancer Learn Enhancer
ID dnllhgllbbihefjdpamldjnlpllogkcf
Official URL https://chromewebstore.google.com/detail/learn-enhancer/dnllhgllbbihefjdpamldjnlpllogkcf
Description Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…
File Size 17.18 KB
Installation Count 226
Current Version 2.1.1
Last Updated 2018-07-21
Publish Date 2018-07-20
Rating 4.83/5 Total 23 Ratings
Developer willhbr
Payment Type free
Extension Website https://github.com/willhbr/learn-enhancer
Help Page URL https://github.com/willhbr/learn-enhancer/issues
Supported Languages 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"
}