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是由rishabhc329开发的Chrome扩展程序,该扩展的主要功能是“Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support…”。
扩展截图
下载AI Interviewer扩展crx文件
下载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"
]
}
]
} | |