AI Chat Assistant (for Youtube Live Stream)

Send YouTube live to OpenAI, get AI summaries & real-time replies for cross-language chat!

AI Chat Assistant (for Youtube Live Stream)คืออะไร?

AI Chat Assistant (for Youtube Live Stream) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://maki0419.com และคุณลักษณะหลักของมันคือ "Send YouTube live to OpenAI, get AI summaries & real-time replies for cross-language chat!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AI Chat Assistant (for Youtube Live Stream)

ดาวน์โหลดไฟล์ส่วนขยาย AI Chat Assistant (for Youtube Live Stream) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you ever been unable to interact with Vtubers on YouTube due to language barriers? Now, we have created a cross-border communication experience for you!

With our new feature, you no longer need to worry about using a translation tool to communicate with Vtubers directly. Real-time translation allows you to easily overcome the challenges of multilingual communication!

Our extension can transmit YouTube live audio to OpenAI for intelligent translation and real-time response. It automatically sends the previous minute of audio to the Whisper API for speech-to-text conversion, sends the results to OpenAI for content analysis, and generates five one-click chat suggestion options to easily overcome communication barriers.

By using our feature, you can easily interact with Vtubers from around the world in the YouTube chat room and enjoy a borderless communication experience!

*This article was generated and translated using artificial intelligence.

## What it does?

- Retrieve the most recent few seconds of audio from a YouTube live stream. 30 seconds by default, but there is a slider available for adjusting it.

- Use the OpenAI Whisper API to convert the audio into text through speech-to-text transcription.

- Forward the transcription to the OpenAI gpt-3.5-turbo Text generation API for content analysis and generate potential chat suggestions.

- Present the chat suggestion options within the YouTube chat room, enabling users to effortlessly send them to the chat room with a single click.

## Disclaimer

Voice-to-text and AI-generated responses are provided by OpenAI. Your audio file will be sent to OpenAI.
You need to fill in the OpenAI API key in the extension settings.

Just a heads up, this is a little project I whipped up for fun. I cannot guarantee its reliability or the quality of the AI responses. So, please approach it with some skepticism and try to find any usable responses. If any one would like to enhance it, feel free to send me a PR!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AI Chat Assistant (for Youtube Live Stream) AI Chat Assistant (for Youtube Live Stream)
ID oeoelnddjmomegbkhdbcbbdndgijjgbe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ai-chat-assistant-for-you/oeoelnddjmomegbkhdbcbbdndgijjgbe
คำอธิบาย Send YouTube live to OpenAI, get AI summaries & real-time replies for cross-language chat!
ขนาดไฟล์ 376 KB
จำนวนการติดตั้ง 227
เวอร์ชันปัจจุบัน 0.4.2
อัปเดตครั้งล่าสุด 2024-01-30
วันที่เผยแพร่ 2023-03-12
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://maki0419.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jim60105/AIChatAssistant
URL หน้าช่วยเหลือ https://github.com/jim60105/AIChatAssistant/issues
ภาษาที่รองรับ en,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "0.4.2",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/*",
        "https:\/\/www.youtube.com\/*",
        "https:\/\/*.googlevideo.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icon\/icon16.png",
            "32": "assets\/icon\/icon32.png",
            "48": "assets\/icon\/icon48.png",
            "128": "assets\/icon\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon\/icon16.png",
        "32": "assets\/icon\/icon32.png",
        "48": "assets\/icon\/icon48.png",
        "128": "assets\/icon\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.html",
                "contentScript_button.html",
                "assets\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}