*FY* MOODLE
Moodle Helper
Что такое *FY* MOODLE?
*FY* MOODLE - это расширение Chrome, разработанное Carlos Avelar, и его основная функция - "Moodle Helper".
Снимки экрана расширения
Скачать файл CRX расширения *FY* MOODLE
Скачайте файлы расширений *FY* MOODLE в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 } ] } |