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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |