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 |
| Eメール | [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"
]
}
]
} | |