YouTube Summarizer
Display ChatGPT summary on Youtube
Wat is YouTube Summarizer?
YouTube Summarizer is een Chrome-extensie ontwikkeld door Itamar Cohen, en de belangrijkste functie is "Display ChatGPT summary on Youtube".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Summarizer
Download YouTube Summarizer-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
Get a summary for a YouTube video in one click - Powered by OpenAI's ChatGPT AI technology.
The summary will generate in real time, embedded in the YouTube video page. Basisinformatie over de Extensie
| Naam | |
| ID | cmdffcgfpcmloddheiojdnbnimhgochk |
| Officiële URL | https://chromewebstore.google.com/detail/youtube-summarizer/cmdffcgfpcmloddheiojdnbnimhgochk |
| Beschrijving | Display ChatGPT summary on Youtube |
| Bestandsgrootte | 302 KB |
| Aantal Installaties | 788 |
| Huidige Versie | 1.1.4 |
| Laatst Bijgewerkt | 2023-06-12 |
| Publicatiedatum | 2023-02-03 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | Itamar Cohen |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Summarizer",
"description": "Display ChatGPT summary on Youtube",
"version": "1.1.4",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"host_permissions": [
"https:\/\/*.openai.com\/"
],
"background": {
"service_worker": "background\/index.js"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content-script\/index.js"
],
"css": [
"github-markdown.css",
"styles.css"
]
}
]
} | |