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
官方網址 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"
}