Canvas to Moodle
Simplifying your life, with just a simple install.
Canvas to Moodle là gì?
Canvas to Moodle là một tiện ích mở rộng Chrome được phát triển bởi jab416171, và tính năng chính của nó là "Simplifying your life, with just a simple install.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Canvas to Moodle
Tải xuống các tệp mở rộng Canvas to Moodle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bojdakiicebeahnallehhhbnfmkgmmhe |
URL Chính Thức | https://chrome.google.com/webstore/detail/canvas-to-moodle/bojdakiicebeahnallehhhbnfmkgmmhe |
Mô tả | Simplifying your life, with just a simple install. |
Kích Thước Tệp | 209 KB |
Số Lần Cài Đặt | 84 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2014-02-02 |
Ngày Phát Hành | 2014-02-02 |
Đánh Giá | 3.70/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | jab416171 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |