Learn Enhancer

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

Learn Enhancerとは何ですか?

Learn Enhancerはwillhbrによって開発されたChromeの拡張機能で、その主な機能は「Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…」です。

拡張機能のスクリーンショット

screenshot
screenshot

Learn Enhancer拡張機能のCRXファイルをダウンロード

Learn Enhancer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Learn Enhancer Learn Enhancer
ID dnllhgllbbihefjdpamldjnlpllogkcf
公式URL https://chromewebstore.google.com/detail/learn-enhancer/dnllhgllbbihefjdpamldjnlpllogkcf
説明 Learn Enhancer improves your university experience by making it faster and easier to view PDFs on Learn or Blackboard. It does…
ファイルサイズ 17.18 KB
インストール数 226
現在のバージョン 2.1.1
最終更新日 2018-07-21
公開日 2018-07-20
評価 4.83/5 合計 23 レビュー
開発者 willhbr
支払い方法 free
拡張機能のウェブサイト https://github.com/willhbr/learn-enhancer
ヘルプページのURL https://github.com/willhbr/learn-enhancer/issues
対応言語 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"
}