YouTube Chatbot extension by Audio2Doc
A chatbot for YouTube videos by Audio2Doc.com
Что такое YouTube Chatbot extension by Audio2Doc?
YouTube Chatbot extension by Audio2Doc - это расширение Chrome, разработанное https://audio2doc.com, и его основная функция - "A chatbot for YouTube videos by Audio2Doc.com".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Chatbot extension by Audio2Doc
Скачайте файлы расширений 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.
Основная информация о расширении
Название | YouTube Chatbot extension by Audio2Doc |
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 |
Электронная почта | [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": [] } ] } |