SenecaAnswer

Gives the answer to seneca assignments

Что такое SenecaAnswer?

SenecaAnswer - это расширение Chrome, разработанное mwmatthew10, и его основная функция - "Gives the answer to seneca assignments".

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

screenshot

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

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

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

                        Adds dark mode for Seneca and gives all answers to questions                    

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

Название SenecaAnswer SenecaAnswer
ID aacmadajiomocfofkfpfjdcbbgdlonkc
Официальный URL https://chromewebstore.google.com/detail/senecaanswer/aacmadajiomocfofkfpfjdcbbgdlonkc
Описание Gives the answer to seneca assignments
Размер файла 36.44 KB
Количество установок 5,257
Текущая Версия 1.0
Последнее Обновление 2019-03-22
Дата публикации 2019-03-21
Рейтинг 3.20/5 Всего 20 оценок
Разработчик mwmatthew10
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SenecaAnswer",
    "version": "1.0",
    "description": "Gives the answer to seneca assignments",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.senecalearning.com\/classroom\/course\/*"
            ],
            "js": [
                "JQuery.js",
                "index.js"
            ],
            "css": [
                "ReplaceCSS.scss"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    }
}