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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον YoutubeSummaries, και η κύρια λειτουργία του είναι "Get Youtube video summaries before watching them, so you know instantly if they're worth watching.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube video summaries - Powered by ChatGPT
Λήψη αρχείων επέκτασης Youtube video summaries - Powered by ChatGPT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } } |