AI Interviewer
Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support…
Что такое AI Interviewer?
AI Interviewer - это расширение Chrome, разработанное rishabhc329, и его основная функция - "Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support…".
Снимки экрана расширения
Скачать файл CRX расширения AI Interviewer
Скачайте файлы расширений AI Interviewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support of taking users voice as an input for answering GPT's Questions Основная информация о расширении
| Название | |
| ID | aeegmngekbdfhijgkbnaigdbjbobipoi |
| Официальный URL | https://chromewebstore.google.com/detail/ai-interviewer/aeegmngekbdfhijgkbnaigdbjbobipoi |
| Описание | Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support… |
| Размер файла | 60.16 KB |
| Количество установок | 33 |
| Текущая Версия | 1.3 |
| Последнее Обновление | 2023-06-23 |
| Дата публикации | 2023-06-23 |
| Разработчик | rishabhc329 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/rohanakar/ai-interview-extension |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AI Interviewer",
"version": "1.3",
"permissions": [
"activeTab",
"storage"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"48": "48.png",
"128": "128.png"
},
"options_page": "settings.html",
"content_scripts": [
{
"matches": [
"http:\/\/chat.openai.com\/*",
"https:\/\/chat.openai.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
]
} | |