BBB Moodle Prettifier
🌟 it will make your ugly moodle shine
Что такое BBB Moodle Prettifier?
BBB Moodle Prettifier - это расширение Chrome, разработанное Tau, и его основная функция - "🌟 it will make your ugly moodle shine".
Снимки экрана расширения
Скачать файл CRX расширения BBB Moodle Prettifier
Скачайте файлы расширений BBB Moodle Prettifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Have you ever wondered why the Moodle of the BBBaden is so ugly?
Well I don't know the reason, but here is some sort of a solution for this problem. Основная информация о расширении
| Название | |
| ID | fbnoacnkmdhnmghankinjgbmlinjpkhg |
| Официальный URL | https://chromewebstore.google.com/detail/bbb-moodle-prettifier/fbnoacnkmdhnmghankinjgbmlinjpkhg |
| Описание | 🌟 it will make your ugly moodle shine |
| Размер файла | 480 KB |
| Количество установок | 37 |
| Текущая Версия | 4.1.3 |
| Последнее Обновление | 2016-09-05 |
| Дата публикации | 2016-09-05 |
| Рейтинг | 5.00/5 Всего 17 оценок |
| Разработчик | Tau |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/bash/bbb-moodle-prettifier |
| URL страницы помощи | https://github.com/bash/bbb-moodle-prettifier/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "BBB Moodle Prettifier",
"short_name": "Moodle Prettifier",
"homepage_url": "https:\/\/github.com\/bash\/bbb-moodle-prettifier",
"version": "4.1.3",
"description": "\ud83c\udf1f it will make your ugly moodle shine",
"permissions": [
"https:\/\/moodle.bbbaden.ch\/*",
"https:\/\/moodle-stage.bbbaden.ch\/*",
"http:\/\/moodle.bbbaden.ch\/*",
"storage",
"downloads",
"background"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/moodle.bbbaden.ch\/*",
"https:\/\/moodle-stage.bbbaden.ch\/*",
"http:\/\/moodle.bbbaden.ch\/*"
],
"js": [
"js\/inject.js"
]
}
],
"icons": {
"128": "logo.png"
},
"web_accessible_resources": [
"html\/options.html",
"fonts\/*"
],
"page_action": {
"default_icon": {
"128": "logo.png"
},
"default_popup": "html\/options.html"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
}
} | |