EcoleDirecte Enhanced
Ajoute différentes options au site EcoleDirecte.com. | Options disponibles dans le menu popup de l'extension.
Что такое EcoleDirecte Enhanced?
EcoleDirecte Enhanced - это расширение Chrome, разработанное Aknologia, и его основная функция - "Ajoute différentes options au site EcoleDirecte.com. | Options disponibles dans le menu popup de l'extension.".
Снимки экрана расширения
Скачать файл CRX расширения EcoleDirecte Enhanced
Скачайте файлы расширений EcoleDirecte Enhanced в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
[Deprecated]
Adds multiple options to the EcoleDirecte website :
- Dark Theme
- Hidden informations shown :
* Average
* Charts
(...)
This website is only available to French students.
PS: Most options are available in the popup menu by clicking on the EcoleDirecte icon of the extension.
v1.5.2591 Changelog:
- Showing every hidden information
- Added 'Select All'
- Optimized code (Clean coding) Основная информация о расширении
| Название | |
| ID | jmjpmgagkoliachgpidgekkmpfablheh |
| Официальный URL | https://chromewebstore.google.com/detail/ecoledirecte-enhanced/jmjpmgagkoliachgpidgekkmpfablheh |
| Описание | Ajoute différentes options au site EcoleDirecte.com. | Options disponibles dans le menu popup de l'extension. |
| Размер файла | 78.85 KB |
| Количество установок | 3,797 |
| Текущая Версия | 1.5.2592 |
| Последнее Обновление | 2022-08-02 |
| Дата публикации | 2020-10-18 |
| Рейтинг | 4.00/5 Всего 8 оценок |
| Разработчик | Aknologia |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en,fr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "EcoleDirecte Enhanced",
"version": "1.5.2592",
"description": "Ajoute diff\u00e9rentes options au site EcoleDirecte.com. | Options disponibles dans le menu popup de l'extension.",
"author": "Aknologia",
"default_locale": "fr",
"permissions": [
"storage",
"tabs",
"https:\/\/*.ecoledirecte.com\/*",
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": [
"dist\/scripts\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"js": [
"dist\/scripts\/requests.js"
],
"run_at": "document_start",
"matches": [
"https:\/\/*.ecoledirecte.com\/*"
]
},
{
"js": [
"dist\/scripts\/content.js"
],
"matches": [
"https:\/\/*.ecoledirecte.com\/*"
]
}
],
"web_accessible_resources": [
"dist\/scripts\/features\/requests_script.js",
"dist\/scripts\/features\/average.js",
"dist\/scripts\/features\/darktheme.js",
"dist\/css\/darktheme.css"
],
"browser_action": {
"default_icon": {
"16": "dist\/images\/icon-16.png",
"32": "dist\/images\/icon-32.png",
"48": "dist\/images\/icon-48.png",
"128": "dist\/images\/icon-128.png"
},
"default_popup": "dist\/popup.html"
},
"icons": {
"16": "dist\/images\/icon-16.png",
"32": "dist\/images\/icon-32.png",
"48": "dist\/images\/icon-48.png",
"128": "dist\/images\/icon-128.png"
}
} | |