YouTubeGPT

A ChatGPT extension for YouTube

YouTubeGPTคืออะไร?

YouTubeGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย automatemylife00 และคุณลักษณะหลักของมันคือ "A ChatGPT extension for YouTube"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTubeGPT

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

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

                        YouTubeGPT Plugin allows users to chat with an AI language model while browsing YouTube videos. It provides a convenient way to engage in conversations and explore the capabilities of AI-powered natural language processing.

Key Features:

Easy Access: You'll find a button at the bottom right corner of YouTube pages. Simply click the button to open the chat window.

Chat Interface: The popup window provides a chat interface specifically designed for interacting with the AI language model.

Video List: Inside the popup window, you'll see a list of videos. Each video has a thumbnail, title, and two buttons: "Chat with me?" and "Remove." You can initiate a chat with the AI model using the "Chat with me?" button, and you can remove a video from the list using the "Remove" button.

Storage: The plugin remembers the videos you interact with. This means you won't lose your video list even if you close the popup or refresh the page.

Easy Communication: The plugin and the popup window communicate with each other seamlessly. When you click the "Chat with me?" button, the video's details are sent to the popup window. If you want to close the popup, you can do so by clicking the "Close" button inside the popup.

Attractive Design: The plugin enhances the appearance of YouTube pages and the popup window with custom styles, making the whole experience visually appealing.

With the YouTubeGPT Plugin, you can have engaging conversations with an AI language model while browsing YouTube. It's a great way to explore the capabilities of AI and make your YouTube experience more interactive.                    

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

ชื่อ YouTubeGPT YouTubeGPT
ID iclmchijhhfeffaljdbkikoggmoaepac
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtubegpt/iclmchijhhfeffaljdbkikoggmoaepac
คำอธิบาย A ChatGPT extension for YouTube
ขนาดไฟล์ 65.89 KB
จำนวนการติดตั้ง 354
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2023-07-02
วันที่เผยแพร่ 2023-07-01
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา automatemylife00
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.youtube.com/@automatemylife00
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTubeGPT",
    "version": "2.0",
    "description": "A ChatGPT extension for YouTube",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/chat.openai.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon.png"
        }
    },
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "chat.js",
                "xtra.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "iconGPT.png",
                "popup.html"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}