YouTube Chatbot extension by Audio2Doc
A chatbot for YouTube videos by Audio2Doc.com
What is YouTube Chatbot extension by Audio2Doc?
YouTube Chatbot extension by Audio2Doc is a Chrome extension developed by https://audio2doc.com, and its main feature is "A chatbot for YouTube videos by Audio2Doc.com".
Extension Screenshots
Download YouTube Chatbot extension by Audio2Doc Extension CRX File
Download YouTube Chatbot extension by Audio2Doc extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | YouTube Chatbot extension by Audio2Doc |
ID | alailbeladefeanclhfdacldpcanbmfk |
Official URL | https://chromewebstore.google.com/detail/youtube-chatbot-extension/alailbeladefeanclhfdacldpcanbmfk |
Description | A chatbot for YouTube videos by Audio2Doc.com |
File Size | 243 KB |
Installation Count | 76 |
Current Version | 1.6 |
Last Updated | 2023-05-19 |
Publish Date | 2023-05-09 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://audio2doc.com |
[email protected] | |
Payment Type | in_app |
Supported Languages | 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": [] } ] } |