NeoExamShield

To prevent malpractice, identifies and blocks third-party browser extensions during tests on the Iamneo portal.

Что такое NeoExamShield?

NeoExamShield - это расширение Chrome, разработанное techadmin, и его основная функция - "To prevent malpractice, identifies and blocks third-party browser extensions during tests on the Iamneo portal.".

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

screenshot
screenshot

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

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

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

                        To uphold the integrity and fairness of the IAMNEO testing environment, we've introduced the extension 'NeoExamShield' to the system. This advanced feature is specifically crafted to recognize and restrict extensions installed on users' devices as they engage in malpractice during exams through our platform.                    

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

Название NeoExamShield NeoExamShield
ID deojfdehldjjfmcjcfaojgaibalafifc
Официальный URL https://chromewebstore.google.com/detail/neoexamshield/deojfdehldjjfmcjcfaojgaibalafifc
Описание To prevent malpractice, identifies and blocks third-party browser extensions during tests on the Iamneo portal.
Размер файла 403 KB
Количество установок 26,389
Текущая Версия Release Version
Последнее Обновление 2023-11-08
Дата публикации 2023-09-12
Рейтинг 1.17/5 Всего 149 оценок
Разработчик techadmin
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://iamneo.ai
URL страницы помощи https://iamneo.ai
URL страницы политики конфиденциальности https://iamneo.ai/terms-of-services
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NeoExamShield",
    "version": "0.0.4",
    "description": "To prevent malpractice, identifies and blocks third-party browser extensions during tests on the Iamneo portal.",
    "permissions": [
        "management",
        "tabs",
        "activeTab",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "service_worker": "minifiedBackground.js"
    },
    "action": {
        "default_popup": "",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "minifiedContentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "version_name": "Release Version",
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon16.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}