SummifyYT (Summarize YouTube Comments)
SummifyYT is a browser extension that summarizes comments of YouTube videos.
Wat is SummifyYT (Summarize YouTube Comments)?
SummifyYT (Summarize YouTube Comments) is een Chrome-extensie ontwikkeld door Dif Industries, en de belangrijkste functie is "SummifyYT is a browser extension that summarizes comments of YouTube videos.".
Extensie Screenshots
Download het CRX-bestand van de extensie SummifyYT (Summarize YouTube Comments)
Download SummifyYT (Summarize YouTube Comments)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | mcjgidambippeaajehcfimmephgholco |
| Officiële URL | https://chromewebstore.google.com/detail/summifyyt-summarize-youtu/mcjgidambippeaajehcfimmephgholco |
| Beschrijving | SummifyYT is a browser extension that summarizes comments of YouTube videos. |
| Bestandsgrootte | 140 KB |
| Aantal Installaties | 236 |
| Huidige Versie | 0.0.9 |
| Laatst Bijgewerkt | 2023-04-15 |
| Publicatiedatum | 2023-03-07 |
| Beoordeling | 3.25/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Dif Industries |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |