YouTube Chatbot extension by Audio2Doc

A chatbot for YouTube videos by Audio2Doc.com

YouTube Chatbot extension by Audio2Docคืออะไร?

YouTube Chatbot extension by Audio2Doc เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://audio2doc.com และคุณลักษณะหลักของมันคือ "A chatbot for YouTube videos by Audio2Doc.com"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Chatbot extension by Audio2Doc

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Chatbot extension by Audio2Doc ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension is a chatbot that allows you to ask questions about videos on YouTube.

Updates:
- (05/16/2023) Added ability to save chat history to database. Also, a small bug fix.
- (05/15/2023) Fixed a bug. Also, users don't need to refresh a page after signing in.
- (05/12/2023) Added login functionality, no need to generate API secret key anymore.                    

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

ชื่อ YouTube Chatbot extension by Audio2Doc YouTube Chatbot extension by Audio2Doc
ID alailbeladefeanclhfdacldpcanbmfk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-chatbot-extension/alailbeladefeanclhfdacldpcanbmfk
คำอธิบาย A chatbot for YouTube videos by Audio2Doc.com
ขนาดไฟล์ 243 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2023-05-19
วันที่เผยแพร่ 2023-05-09
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://audio2doc.com
อีเมล [email protected]
ประเภทการชำระเงิน in_app
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chatbot for YouTube videos by Audio2Doc.com",
    "version": "1.6",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "name": "YouTube Chatbot extension by Audio2Doc",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}