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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chatbot for YouTube videos by Audio2Doc.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Chatbot extension by Audio2Doc एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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": [] } ] } |