Moodle Downloader
A chrome extension for downloading Moodle resources
Moodle Downloader란 무엇입니까?
Moodle Downloader은(는) kmChrysalis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension for downloading Moodle resources"입니다.
확장 프로그램 스크린샷
Moodle Downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
An open-source chrome extension that enables students to download files from Moodle with a click of a button! Complete rework of similar extension by @harsilspatel, all credits at GitHub page. * Hebrew support * Fewer elements * Bug fixes IMPORTANT: Please save your resources out of standard 'Downloads' directory because the extension will overwrite any conflicted documents. Bugs & ideas: https://forms.gle/HPAXPGUscXd8BGDr8 Source code: https://github.com/kmChrysalis/moodle-downloader Support me: https://www.paypal.me/KonstantinMaltcev
확장 프로그램 기본 정보
이름 | Moodle Downloader |
ID | egdgajocnmpjhghpglffhngdojcinkhn |
공식 URL | https://chromewebstore.google.com/detail/moodle-downloader/egdgajocnmpjhghpglffhngdojcinkhn |
설명 | A chrome extension for downloading Moodle resources |
파일 크기 | 239 KB |
설치 횟수 | 930 |
현재 버전 | 2.1.9 |
최근 업데이트 | 2021-05-10 |
출시 날짜 | 2020-04-15 |
평점 | 4.38/5 총 16 개의 평점 |
개발자 | kmChrysalis |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/kmChrysalis/moodle-downloader |
도움말 페이지 URL | https://www.paypal.me/KonstantinMaltcev |
개인정보 보호 정책 페이지 URL | https://www.freeprivacypolicy.com/live/19bf9e30-c112-46d1-b13b-051b2a3944ab |
지원되는 언어 | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Moodle Downloader", "version": "2.1.9", "description": "A chrome extension for downloading Moodle resources", "icons": { "16": "assets\/icon16.png", "24": "assets\/icon24.png", "32": "assets\/icon32.png", "64": "assets\/icon64.png", "128": "assets\/icon128.png", "256": "assets\/icon256.png", "512": "assets\/icon512.png" }, "browser_action": { "default_popup": "\/src\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*course*" ], "run_at": "document_idle", "js": [ "src\/content.js" ], "css": [ "css\/content.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "downloads" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "web_accessible_resources": [ "assets\/*" ] } |