EAAA Canvas Downloader
Download multiple course files with one click on Canvas. Only works with EAAA students.
EAAA Canvas Downloader क्या है?
EAAA Canvas Downloader Asbjørn Bach द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download multiple course files with one click on Canvas. Only works with EAAA students."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में EAAA Canvas Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |