YouTube Summary Generator
Generate concise summaries of YouTube video transcripts, highlighting key points. Thanks to AI technology.
YouTube Summary Generator क्या है?
YouTube Summary Generator pmarxbraun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate concise summaries of YouTube video transcripts, highlighting key points. Thanks to AI technology."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Summary Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Enhance Your YouTube Experience with AI-Powered Summaries Introducing the YouTube Summary Extension - a free Chrome Extension that utilizes OpenAI's advanced ChatGPT technology to deliver concise video summaries directly within the YouTube interface. Make the most of your time and absorb information more efficiently with this handy tool. Preview key takeaways by clicking the summary button on video thumbnails as you browse. Save time, learn faster, and transform your YouTube experience with the power of AI-generated summaries.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Summary Generator |
ID | loijikpkflmdfpgbaaddaophfoohlamp |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-summary-generator/loijikpkflmdfpgbaaddaophfoohlamp |
विवरण | Generate concise summaries of YouTube video transcripts, highlighting key points. Thanks to AI technology. |
फ़ाइल का आकार | 10.82 KB |
स्थापना संख्या | 45 |
वर्तमान संस्करण | 0.0.0.3 |
अंतिम अपडेट | 2023-04-27 |
प्रकाशन तिथि | 2023-04-02 |
डेवलपर | pmarxbraun |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://monsitetranquille.fr |
सहायता पृष्ठ URL | https://monsitetranquille.fr/contact/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Summary Generator", "version": "0.0.0.3", "description": "Generate concise summaries of YouTube video transcripts, highlighting key points. Thanks to AI technology.", "action": { "default_popup": "", "default_title": "Summarize this video", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "permissions": [ "clipboardWrite" ], "host_permissions": [ "https:\/\/europe-west3-symbolic-object-137311.cloudfunctions.net\/summerize_yt_transcript\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ], "js": [ "scripts\/content.js" ], "css": [ "styles\/styles.css" ], "run_at": "document_idle" } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "\/icons\/*" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ] } ] } |