Canvas to Moodle
Simplifying your life, with just a simple install.
Canvas to Moodle란 무엇입니까?
Canvas to Moodle은(는) jab416171에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplifying your life, with just a simple install."입니다.
확장 프로그램 스크린샷
Canvas to Moodle 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an extension that tries to make Canvas LMS (http://www.instructure.com/) more like Moodle. Source can be found at https://github.com/jab416171/canvas-moodle. Pull requests and issues are welcome. Features: * Display the "Grade Summary" page on the home page Version History has moved to https://docs.google.com/document/d/1ThHSGVbQoG4ykQ_vA51RFGhtZB-UhY_8R8P2ob9PrTk/edit# 1.6: Rewrote in coffeescript Performance upgrade New Layout Options page added New Calendar Gets courses with grades Gets assignments that are due 1.2: Added loading icon and fade effects 1.1: Fixed a bug where content would sometimes not load. See http://git.io/fCzPkw for more details. 1.0: Initial release
확장 프로그램 기본 정보
이름 | |
ID | bojdakiicebeahnallehhhbnfmkgmmhe |
공식 URL | https://chrome.google.com/webstore/detail/canvas-to-moodle/bojdakiicebeahnallehhhbnfmkgmmhe |
설명 | Simplifying your life, with just a simple install. |
파일 크기 | 209 KB |
설치 횟수 | 84 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2014-02-02 |
출시 날짜 | 2014-02-02 |
평점 | 3.70/5 총 10 개의 평점 |
개발자 | jab416171 |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Canvas to Moodle", "description": "Simplifying your life, with just a simple install.", "version": "2.0.0", "manifest_version": 2, "icons": { "128": "canvas-128.png" }, "options_page": "options.html", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/", "https:\/\/lms.neumont.edu\/" ], "js": [ "jquery.min.js", "jquery-ui.min.js", "underscore-min.js", "toastr.min.js", "moment.min.js", "clndr-1.0.7.min.js", "contentscript.js", "jquery.tinysort.min.js" ], "css": [ "style.css" ] } ], "permissions": [ "https:\/\/*.instructure.com\/api\/*", "https:\/\/lms.neumont.edu\/api\/*", "storage", "tabs" ], "web_accessible_resources": [ "arrow-24.png", "gear-24.png", "contentscriptv2.coffee", "jquery-1.10.2.min.map", "underscore-min.map", "toastr.min.js.map", "contentscript.js.map" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |