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.
擴展基本資訊
名稱 | YouTube Summarizer |
ID | cmdffcgfpcmloddheiojdnbnimhgochk |
官方網址 | 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" ] } ] } |