My Epitech Percentages

Show each project passing tests percentage on my.epitech.eu

Что такое My Epitech Percentages?

My Epitech Percentages - это расширение Chrome, разработанное Alexis C., и его основная функция - "Show each project passing tests percentage on my.epitech.eu".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения My Epitech Percentages

Скачайте файлы расширений My Epitech Percentages в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Restore an old feature of my.epitech.eu: the percentage bar of passing tests.

Show percentage bars on each project corresponding to the passing tests percentage of the project.

These percentage bars are injected in the page for each projects that has met the prerequisites of a testable and functional project. Otherwise, no percentage bar can be shown.                    

Основная информация о расширении

Название My Epitech Percentages My Epitech Percentages
ID hepfpnmpnjacajnfkpmmmhhbiaggddin
Официальный URL https://chromewebstore.google.com/detail/my-epitech-percentages/hepfpnmpnjacajnfkpmmmhhbiaggddin
Описание Show each project passing tests percentage on my.epitech.eu
Размер файла 4.85 KB
Количество установок 916
Текущая Версия 1.1.1
Последнее Обновление 2021-07-16
Дата публикации 2021-07-16
Рейтинг 3.00/5 Всего 1 оценок
Разработчик Alexis C.
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Epitech Percentages",
    "description": "Show each project passing tests percentage on my.epitech.eu",
    "version": "1.1.1",
    "permissions": [
        "*:\/\/my.epitech.eu\/*",
        "https:\/\/api.epitest.eu\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/my.epitech.eu\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}