EAAA Canvas Downloader
Download multiple course files with one click on Canvas. Only works with EAAA students.
EAAA Canvas Downloaderคืออะไร?
EAAA Canvas Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Asbjørn Bach และคุณลักษณะหลักของมันคือ "Download multiple course files with one click on Canvas. Only works with EAAA students."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EAAA Canvas Downloader
ดาวน์โหลดไฟล์ส่วนขยาย EAAA Canvas Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Lightweight extension to download multiple course files with one click on Canvas. Only works with EAAA students. Extension only works on https://eaaa.instructure.com/courses/* pages Release notes: V1.3 - Updated popup window with how-to-use since a lot of people got confused - Implemented counter to track the amount of clicks you saved - Download icon got a hover title and hover mouse effect - Added "Download all files" button v1.2 - Added select option - Downloading files no longer pushes page to top v1.1 - Moved download icon - Updated info page v1.0 - Initial release Credits: - Download icon made by Freepik from www.flaticon.com is licensed by CC 3.0 BY
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | EAAA Canvas Downloader |
ID | ejfjicoilpmhfbdlagcfabidoagclpbg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/eaaa-canvas-downloader/ejfjicoilpmhfbdlagcfabidoagclpbg |
คำอธิบาย | Download multiple course files with one click on Canvas. Only works with EAAA students. |
ขนาดไฟล์ | 69.72 KB |
จำนวนการติดตั้ง | 163 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2018-10-15 |
วันที่เผยแพร่ | 2018-10-15 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Asbjørn Bach |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | da |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EAAA Canvas Downloader", "version": "1.3", "manifest_version": 2, "description": "Download multiple course files with one click on Canvas. Only works with EAAA students.", "permissions": [ "storage", "activeTab" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon48.png", "default_title": "Canvas Downloader", "default_popup": "popup.html" }, "web_accessible_resources": [ "cloud-computing.png" ], "content_scripts": [ { "matches": [ "https:\/\/eaaa.instructure.com\/courses\/*" ], "js": [ "jquery-3.3.1.min.js", "script.js" ] } ] } |