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" } ] } |