*FY* MOODLE
Moodle Helper
*FY* MOODLE란 무엇입니까?
*FY* MOODLE은(는) Carlos Avelar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Moodle Helper"입니다.
확장 프로그램 스크린샷
*FY* MOODLE 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extensão para ajudar estudantes a validar suas respostas antes de enviá-las no Moodle. Google Chrome extension to help students validate some of their answers before submitting on Moodle. Disclaimer: This extension has been made for educational purposes as a side project and proof that could be done, the use is responsability of the user alone. All data collected is originated from the users of the extension, so the authors have no part or responsability of the contents in it.
확장 프로그램 기본 정보
이름 | |
ID | lcmieboflejgnjckknpmamhmbmngedke |
공식 URL | https://chrome.google.com/webstore/detail/fy-moodle/lcmieboflejgnjckknpmamhmbmngedke |
설명 | Moodle Helper |
파일 크기 | 178 KB |
설치 횟수 | 1,000 |
현재 버전 | 1.4.2 |
최근 업데이트 | 2018-07-17 |
출시 날짜 | 2018-07-17 |
평점 | 4.32/5 총 19 개의 평점 |
개발자 | Carlos Avelar |
결제 유형 | free |
지원되는 언어 | en,pt-BR,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "*FY* MOODLE", "description": "Moodle Helper", "version": "1.4.2", "icons": { "16": "assets\/16.png", "48": "assets\/48.png", "128": "assets\/128.png" }, "default_locale": "en", "permissions": [ "webNavigation", "storage", "alarms", "*:\/\/*.ggte.unicamp.br\/eam\/*" ], "background": { "scripts": [ "js\/ga.js", "js\/firebase.js", "js\/axios.min.js", "js\/constants.js", "js\/collector.js" ], "persistent": false }, "browser_action": { "default_title": "Open the popup", "default_icon": "assets\/16.png", "default_popup": "views\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.ggte.unicamp.br\/eam\/*" ], "js": [ "js\/ga.js", "js\/firebase.js", "js\/constants.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/www.ggte.unicamp.br\/eam\/my\/*" ], "js": [ "js\/watchdog.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/www.ggte.unicamp.br\/eam\/mod\/quiz\/attempt.php*" ], "js": [ "js\/answer.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/www.ggte.unicamp.br\/eam\/mod\/quiz\/review.php*" ], "js": [ "js\/scan.js" ], "run_at": "document_end", "all_frames": true } ] } |