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 |
公式URL | 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" } ] } |