Youtube video summaries - Powered by ChatGPT
Get Youtube video summaries before watching them, so you know instantly if they're worth watching.
Youtube video summaries - Powered by ChatGPT क्या है?
Youtube video summaries - Powered by ChatGPT YoutubeSummaries द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get Youtube video summaries before watching them, so you know instantly if they're worth watching."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube video summaries - Powered by ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension lets you view a brief summary of a youtube video before watching it, so you can avoid clickbait content or quickly get the gist of a video. These summaries are generated by ChatGPT and anyone logged into their ChatGPT account can generate a summary - completely free! Simply mouse over any video title to view its summary. Right click on a title to view options to generate or downvote a summary in the pop-up menu that appears.
एक्सटेंशन की मूल जानकारी
नाम | Youtube video summaries - Powered by ChatGPT |
ID | bajbfiocljodaddcdfkndlmgjbjbmjkf |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-video-summaries-p/bajbfiocljodaddcdfkndlmgjbjbmjkf |
विवरण | Get Youtube video summaries before watching them, so you know instantly if they're worth watching. |
फ़ाइल का आकार | 36.1 KB |
स्थापना संख्या | 40 |
वर्तमान संस्करण | 0.2.3 |
अंतिम अपडेट | 2023-07-21 |
प्रकाशन तिथि | 2023-06-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | YoutubeSummaries |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube video summaries - Powered by ChatGPT", "version": "0.2.3", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "description": "Get Youtube video summaries before watching them, so you know instantly if they're worth watching.", "background": { "service_worker": "background.js" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "contentscripts\/content.bundle.js" ] }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentscripts\/ytContent.bundle.js" ] } ], "action": { "default_icon": { "48": "images\/icon48.png" } } } |