Youtube Assistant

Chat with any video on youtube

Youtube Assistant là gì?

Youtube Assistant là một tiện ích mở rộng Chrome được phát triển bởi kitesdev, và tính năng chính của nó là "Chat with any video on youtube".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Assistant

Tải xuống các tệp mở rộng Youtube Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Introducing the "YouTube Assistant" Chrome extension, the ultimate tool for getting the most out of any YouTube video. With this advanced AI-powered extension, you'll have access to an unprecedented level of information and insights about the videos you watch.

This plugin can literally answer any question about a video. Simply connect your own OpenAI API key and you are ready to use it. 

Purchase the Source Code from here: 
https://kitesdev.gumroad.com/l/youtubassistant                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Assistant Youtube Assistant
ID hjgdomehmbbnamplldiennbamkiiomge
URL Chính Thức https://chromewebstore.google.com/detail/youtube-assistant/hjgdomehmbbnamplldiennbamkiiomge
Mô tả Chat with any video on youtube
Kích Thước Tệp 73.88 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2023-04-27
Ngày Phát Hành 2023-04-04
Nhà Phát Triển kitesdev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kites.dev/youtube-assistant/
URL Trang Trợ Giúp https://kites.dev/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Assistant",
    "description": "Chat with any video on youtube",
    "version": "0.0.0.1",
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ],
            "js": [
                "injector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "he.min.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    }
}