ISOM Canvas Tools
Provides extra functions on University of Auckland's Canvas environment.
ISOM Canvas Toolsคืออะไร?
ISOM Canvas Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ISOM Software และคุณลักษณะหลักของมันคือ "Provides extra functions on University of Auckland's Canvas environment."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ISOM Canvas Tools
ดาวน์โหลดไฟล์ส่วนขยาย ISOM Canvas Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
For use with the University of Auckland's Canvas LMS. Last updated 8 April 2019. ❗❗ This extension should be considered superseded by UoA Toolbox ❗ See https://superuoa.custhelp.com/app/answers/detail/a_id/9027 ❗❗ When installed several features are added: - Adds a click-able address bar icon for enrolment, section, and group list downloads. Use the UoA Toolbox instead! - Adds a button to the People page to download a report of all student accesses. Use the UoA Toolbox instead! - Shows the day of week for due dates on Modules page. Use the extension options to set list/report format. Contact Ron Tiong for questions, help, details, and feature suggestions. Source code: https://github.com/ron-t/ISOM-Canvas-Tools ------------------------------- Notes: Student access export feature adapted from the Canvancement project (https://github.com/jamesjonesmath/canvancement). excel-builder.js library used (https://github.com/jamesjonesmath/canvancement). THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ISOM Canvas Tools |
ID | hljflcjcodflogcmdnbeeoajccoafnhj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/isom-canvas-tools/hljflcjcodflogcmdnbeeoajccoafnhj |
คำอธิบาย | Provides extra functions on University of Auckland's Canvas environment. |
ขนาดไฟล์ | 137 KB |
จำนวนการติดตั้ง | 386 |
เวอร์ชันปัจจุบัน | 0.95 |
อัปเดตครั้งล่าสุด | 2019-04-07 |
วันที่เผยแพร่ | 2019-04-07 |
คะแนน | 4.70/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | ISOM Software |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/ron-t/ISOM-Canvas-Tools |
URL หน้านโยบายความเป็นส่วนตัว | https://isom-policy.netlify.com |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ISOM Canvas Tools", "short_name": "ICanTools", "description": "Provides extra functions on University of Auckland's Canvas environment.", "version": "0.95", "icons": { "128": "images\/icon.png" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/canvas.auckland.ac.nz\/courses\/*\/users", "https:\/\/canvas.auckland.ac.nz\/courses\/*\/users\/", "https:\/\/auckland.instructure.com\/courses\/*\/users", "https:\/\/auckland.instructure.com\/courses\/*\/users\/", "https:\/\/auckland.test.instructure.com\/courses\/*\/users", "https:\/\/auckland.test.instructure.com\/courses\/*\/users\/", "https:\/\/auckland.beta.instructure.com\/courses\/*\/users", "https:\/\/auckland.beta.instructure.com\/courses\/*\/users\/" ], "js": [ "scripts\/jquery-2.2.0.min.js", "scripts\/excel-builder.compiled.min.js", "scripts\/util.js", "scripts\/users-content-script.js" ] }, { "matches": [ "https:\/\/canvas.auckland.ac.nz\/courses\/*\/modules", "https:\/\/canvas.auckland.ac.nz\/courses\/*\/modules\/", "https:\/\/auckland.instructure.com\/courses\/*\/modules", "https:\/\/auckland.instructure.com\/courses\/*\/modules\/", "https:\/\/auckland.test.instructure.com\/courses\/*\/modules", "https:\/\/auckland.test.instructure.com\/courses\/*\/modules\/", "https:\/\/auckland.beta.instructure.com\/courses\/*\/modules", "https:\/\/auckland.beta.instructure.com\/courses\/*\/modules\/" ], "js": [ "scripts\/modules-content-script.js" ] } ], "page_action": { "default_icon": { "38": "images\/icon.png" }, "default_title": "Click to show ISOM Canvas Tools functions", "default_popup": "studentListPopup.html" }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "declarativeContent", "activeTab", "storage" ], "content_security_policy": "script-src 'self'; object-src 'self'" } |