YouTube Summarizer
Display ChatGPT summary on Youtube
什么是YouTube Summarizer?
YouTube Summarizer是由Itamar Cohen开发的Chrome扩展程序,该扩展的主要功能是“Display ChatGPT summary on Youtube”。
扩展截图
下载YouTube Summarizer扩展crx文件
下载YouTube Summarizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | cmdffcgfpcmloddheiojdnbnimhgochk |
| 官方URL | https://chromewebstore.google.com/detail/youtube-summarizer/cmdffcgfpcmloddheiojdnbnimhgochk |
| 简介 | Display ChatGPT summary on Youtube |
| 文件大小 | 302 KB |
| 安装次数 | 788 |
| 当前版本 | 1.1.4 |
| 更新时间 | 2023-06-12 |
| 上架时间 | 2023-02-03 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Itamar Cohen |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
}
]
} | |