AI Interviewer
Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support…
Vad är AI Interviewer?
AI Interviewer är en Chrome-tillägg utvecklad av rishabhc329, och dess huvudfunktion är "Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support…".
Tilläggsskärmbilder
Ladda ner AI Interviewer-förlängningens CRX-fil
Ladda ner AI Interviewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | aeegmngekbdfhijgkbnaigdbjbobipoi |
| Officiell webbadress | https://chromewebstore.google.com/detail/ai-interviewer/aeegmngekbdfhijgkbnaigdbjbobipoi |
| Beskrivning | Plugin for Chat GPT for taking interview based on pre defined prompts . The prompts are customisable and easy to add . With support… |
| Filstorlek | 60.16 KB |
| Antal Installationer | 33 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2023-06-23 |
| Publiceringsdatum | 2023-06-23 |
| Utvecklare | rishabhc329 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/rohanakar/ai-interview-extension |
| Stödda Språk | 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"
]
}
]
} | |