Ask The Video
AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!
Ask The Video क्या है?
Ask The Video https://askthe.video द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ask The Video एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
#ChatGPT #No_API_KEY_Needed Ask The Video is a powerful and user-friendly extension designed to enhance your YouTube experience by providing concise summaries of videos, allowing you to quickly grasp the key takeaways and main points without watching the entire content. Key Features: 1. News Summary: Get concise breakdowns of news videos, helping you stay informed without watching lengthy content. 2. Question & Answer: Enter your query, and the extension finds the relevant information within the video, saving time. 3. Write tweet: Automatically generate and share engaging tweets based on the video's highlights. Change logs: V1.0.16: 4 May, 2023 - Support new Youtube UI
एक्सटेंशन की मूल जानकारी
नाम | Ask The Video |
ID | abedhpcjdaheeedikdakfmjapgoohfgc |
आधिकारिक URL | https://chromewebstore.google.com/detail/ask-the-video/abedhpcjdaheeedikdakfmjapgoohfgc |
विवरण | AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click! |
फ़ाइल का आकार | 500 KB |
स्थापना संख्या | 67 |
वर्तमान संस्करण | 1.0.17 |
अंतिम अपडेट | 2023-07-05 |
प्रकाशन तिथि | 2023-04-05 |
रेटिंग | 4.00/5 कुल 4 रेटिंग्स |
डेवलपर | https://askthe.video |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://askthe.video |
सहायता पृष्ठ URL | https://askthe.video |
गोपनीयता नीति पृष्ठ URL | https://aiocean.io/pages/privacy-policy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ask The Video", "description": "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!", "version": "1.0.17", "author": "[email protected]", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "content_scripts": [ { "js": [ "assets\/content-script-loader.content.ts.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ], "run_at": "document_idle", "css": [ "assets\/content.css" ] }, { "js": [ "assets\/content-script-loader.content-chatgpt.ts.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_idle", "css": [ "assets\/content-chatgpt.css" ] } ], "externally_connectable": { "matches": [ "http:\/\/localhost:3000\/*", "https:\/\/askthevideo.web.app\/*" ] }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "resources": [ "assets\/content.ts.js" ], "use_dynamic_url": true }, { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "assets\/content-chatgpt.ts.js" ], "use_dynamic_url": true } ] } |