SummifyYT (Summarize YouTube Comments)
SummifyYT is a browser extension that summarizes comments of YouTube videos.
Что такое SummifyYT (Summarize YouTube Comments)?
SummifyYT (Summarize YouTube Comments) - это расширение Chrome, разработанное Dif Industries, и его основная функция - "SummifyYT is a browser extension that summarizes comments of YouTube videos.".
Снимки экрана расширения
Скачать файл CRX расширения SummifyYT (Summarize YouTube Comments)
Скачайте файлы расширений SummifyYT (Summarize YouTube Comments) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
SummifyYT is a browser extension that helps you quickly and easily summarize comments on YouTube videos. It's perfect for users who want to get a quick overview of the comments without reading through all of them. Try SummifyYT now and see the difference it makes! Developer updates: - Bug fixing - Added setting to enable GPT-4 - Added setting to disable auto-start - UI look overhaul (Align extension's UI with YouTube's web page style) - Fixed chat removing from chatGPT history - Added setting for summary language P.S. You need to be logged in ChatGPT.
Основная информация о расширении
Название | SummifyYT (Summarize YouTube Comments) |
ID | mcjgidambippeaajehcfimmephgholco |
Официальный URL | https://chromewebstore.google.com/detail/summifyyt-summarize-youtu/mcjgidambippeaajehcfimmephgholco |
Описание | SummifyYT is a browser extension that summarizes comments of YouTube videos. |
Размер файла | 140 KB |
Количество установок | 236 |
Текущая Версия | 0.0.9 |
Последнее Обновление | 2023-04-15 |
Дата публикации | 2023-03-07 |
Рейтинг | 3.25/5 Всего 4 оценок |
Разработчик | Dif Industries |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SummifyYT (Summarize YouTube Comments)", "version": "0.0.9", "description": "SummifyYT is a browser extension that summarizes comments of YouTube videos.", "host_permissions": [ "https:\/\/*.openai.com\/" ], "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/youtu.be\/*" ], "run_at": "document_end", "js": [ "content.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*", "icons\/*" ], "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/youtu.be\/*" ] } ], "icons": { "16": "icons\/logo16.png", "32": "icons\/logo32.png", "48": "icons\/logo48.png", "64": "icons\/logo64.png", "128": "icons\/logo128.png" } } |