YouTube Summarizer
Display ChatGPT summary on Youtube
YouTube Summarizerคืออะไร?
YouTube Summarizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Itamar Cohen และคุณลักษณะหลักของมันคือ "Display ChatGPT summary on Youtube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Summarizer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |