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 |
| 公式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 |
| Eメール | [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": []
}
]
} | |