YouTube Chatbot extension by Audio2Doc
A chatbot for YouTube videos by Audio2Doc.com
什麼是YouTube Chatbot extension by Audio2Doc?
YouTube Chatbot extension by Audio2Doc是由https://audio2doc.com開發的Chrome擴展程式,該擴展的主要功能是“A chatbot for YouTube videos by Audio2Doc.com”。
擴展截圖
下載YouTube Chatbot extension by Audio2Doc擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | alailbeladefeanclhfdacldpcanbmfk |
| 官方網址 | 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": []
}
]
} | |