AI-Proctor

This is the chrome extention for the AI-Proctor system. Find more information about the system at https://www.ai-proctor.com/

Что такое AI-Proctor?

AI-Proctor - это расширение Chrome, разработанное TechiBees Inc., и его основная функция - "This is the chrome extention for the AI-Proctor system. Find more information about the system at https://www.ai-proctor.com/".

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

screenshot

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

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

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

                        This extension is for the AI-Proctor system. It opens a channel between the student browser and the instructor only during the exam. It also converts Chrome to full screen mode during the exam. The extension is one part of the system. The other part is the AI-Proctor desktop application. Please download it. Good luck in your exams!                    

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

Название AI-Proctor AI-Proctor
ID llkbempahblbohpipifajipejjackemi
Официальный URL https://chromewebstore.google.com/detail/ai-proctor/llkbempahblbohpipifajipejjackemi
Описание This is the chrome extention for the AI-Proctor system. Find more information about the system at https://www.ai-proctor.com/
Размер файла 67.78 KB
Количество установок 1,000
Текущая Версия 17.0
Последнее Обновление 2021-08-21
Дата публикации 2020-07-04
Рейтинг 3.00/5 Всего 2 оценок
Разработчик TechiBees Inc.
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://ai-proctor.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AI-Proctor",
    "version": "17.0",
    "manifest_version": 2,
    "description": "This is the chrome extention for the AI-Proctor system. Find more information about the system at  https:\/\/www.ai-proctor.com\/",
    "icons": {
        "128": "AiProctor.png"
    },
    "browser_action": {
        "name": "AI-Proctor",
        "icons": [
            "AiProctor.png"
        ],
        "default_icon": "AiProctor.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "storage",
        "tabs",
        "",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "activeTab"
    ]
}