YouTube Chatbot extension by Audio2Doc
A chatbot for YouTube videos by Audio2Doc.com
YouTube Chatbot extension by Audio2Doc là gì?
YouTube Chatbot extension by Audio2Doc là một tiện ích mở rộng Chrome được phát triển bởi https://audio2doc.com, và tính năng chính của nó là "A chatbot for YouTube videos by Audio2Doc.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Chatbot extension by Audio2Doc
Tải xuống các tệp mở rộng YouTube Chatbot extension by Audio2Doc 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Chatbot extension by Audio2Doc |
ID | alailbeladefeanclhfdacldpcanbmfk |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-chatbot-extension/alailbeladefeanclhfdacldpcanbmfk |
Mô tả | A chatbot for YouTube videos by Audio2Doc.com |
Kích Thước Tệp | 243 KB |
Số Lần Cài Đặt | 76 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2023-05-19 |
Ngày Phát Hành | 2023-05-09 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://audio2doc.com |
[email protected] | |
Loại Thanh Toán | in_app |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } ] } |