Learn Enhancer

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

Qu'est-ce que Learn Enhancer ?

Learn Enhancer est une extension Chrome développée par willhbr, et sa fonction principale est "Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Learn Enhancer

Téléchargez les fichiers d'extension Learn Enhancer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Learn Enhancer Learn Enhancer
ID dnllhgllbbihefjdpamldjnlpllogkcf
URL Officiel 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…
Taille du Fichier 17.18 KB
Nombre d'Installations 226
Version Actuelle 2.1.1
Dernière Mise à Jour 2018-07-21
Date de Publication 2018-07-20
Évaluation 4.83/5 Total 23 Évaluations
Développeur willhbr
Type de Paiement free
Site Web de l'Extension https://github.com/willhbr/learn-enhancer
URL de la Page d'Aide https://github.com/willhbr/learn-enhancer/issues
Langues Prises en Charge 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"
}