AI Voice
Empower AI with voice capabilities
Hvad er AI Voice?
AI Voice er en Chrome-udvidelse udviklet af Kunal J., og dens hovedfunktion er "Empower AI with voice capabilities".
Udvidelsesskærmbilleder
Download AI Voice-udvidelses-CRX-fil
Download AI Voice-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
- Get real-time audio responses from multiple voices.
- Control the voice, voice speed and pitch for a personalized experience.
- Interact with your GPT using your voice.
- Enjoy a light-weight interface for seamless usage.
- Compatible with Google Bard
- Designed to work with multiple text-generative AI models. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cmjcclkobjffgdeefejdpjhoglokamcm |
| Officiel URL | https://chromewebstore.google.com/detail/ai-voice/cmjcclkobjffgdeefejdpjhoglokamcm |
| Beskrivelse | Empower AI with voice capabilities |
| Filstørrelse | 1.19 MB |
| Antal Installationer | 343 |
| Nuværende Version | 1.1.1 |
| Senest Opdateret | 2023-06-11 |
| Udgivelsesdato | 2023-05-08 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | Kunal J. |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AI Voice",
"author": "[email protected]",
"version": "1.1.1",
"description": "Empower AI with voice capabilities",
"permissions": [
"storage",
"contextMenus"
],
"host_permissions": [
"https:\/\/chat.openai.com\/*",
"https:\/\/bard.google.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.openai.com\/*",
"https:\/\/bard.google.com\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
},
{
"css": [
"contentScript.css"
],
"matches": [
"https:\/\/*.openai.com\/*",
"https:\/\/bard.google.com\/*"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/bookmark.png",
"assets\/play.png",
"assets\/delete.png",
"assets\/save.png"
],
"matches": []
}
],
"action": {
"default_icon": {
"16": "assets\/icon_.png",
"24": "assets\/icon_.png",
"32": "assets\/icon_.png"
},
"default_title": "AI Voice",
"default_popup": "popup.html"
},
"icons": {
"16": "assets\/icon_.png",
"32": "assets\/icon_.png",
"48": "assets\/icon_.png",
"128": "assets\/icon_.png"
},
"manifest_version": 3
} | |