Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
什麼是Learning Suite Mod?
Learning Suite Mod是由BYU Coding Ninjas開發的Chrome擴展程式,該擴展的主要功能是“This extension modifies the Learning Suite page to make it more friendly.”。
擴展截圖
下載Learning Suite Mod擴展crx文件
下載Learning Suite Mod擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tired of those empty drop-down boxes on Learning Suite? Wish you didn't have to go back to the home page to switch classes? This extension adds course links to every page of BYU's Learning Suite. This is by no means a permanent solution, but it will work for now. If you find any bugs or have ideas please let me know in the feedback section.
擴展基本資訊
名稱 | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
官方網址 | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
簡介 | This extension modifies the Learning Suite page to make it more friendly. |
檔案大小 | 6.23 KB |
安裝次數 | 20 |
目前版本 | 1.2 |
更新時間 | 2014-02-14 |
上架時間 | 2014-02-13 |
評分 | 5.00/5 共 7 次評分 |
開發者 | BYU Coding Ninjas |
付費類型 | free |
擴展官網 | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
說明頁面URL | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Learning Suite Mod", "description": "This extension modifies the Learning Suite page to make it more friendly.", "version": "1.2", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/learningsuite.byu.edu\/student,top*" ], "js": [ "save.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/learningsuite.byu.edu\/*" ], "js": [ "load.js" ], "run_at": "document_end" } ] } |