ChatGPT for Chrome & YouTube Summary with AI

Access ChatGPT from the Chrome toolbar and get transcripts and summaries of YouTube videos. Powered by ChatGPT & Claude.

ChatGPT for Chrome & YouTube Summary with AIคืออะไร?

ChatGPT for Chrome & YouTube Summary with AI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://glasp.co และคุณลักษณะหลักของมันคือ "Access ChatGPT from the Chrome toolbar and get transcripts and summaries of YouTube videos. Powered by ChatGPT & Claude."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT for Chrome & YouTube Summary with AI

ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT for Chrome & YouTube Summary with AI ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ChatGPT for Chrome & YouTube Summary with ChatGPT & Claude is a free Chrome Extension that lets you quickly access transcripts of YouTube videos, summarize YouTube videos, and ask ChatGPT from the Chrome toolbar.

HOW IT WORKS:
- When you visit YouTube videos, you'll see a gadget box on the right top so that you can quickly access transcripts of the YouTube video.
- If you click "View AI Summary", you can see the summary of the video.
- Clicking Chrome toolbar allows you to access ChatGPT so that you can ask anything instantly.

Trouble Shooting:
- If you use Brave, please go to `brave://settings/shields` and please disable "Prevent sites from fingerprinting me based on my language preferences" so that you can use this Chrome Extension in the popup.

Updates:
- (07/28/2023) Added Claude (Anthropic) model for YouTube Summary.
- (06/13/2023) Added bug fixes on starting summarization.
- (04/28/2023) Added a few bug fixes on user settings.
- (04/26/2023) Added keyboard shortcuts and bug fixes on option page.
- (04/11/2023) Added ChatGPT model selection & prompt strategy for longer videos.
- Added YouTube summary function. (03/18/2023)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ChatGPT for Chrome & YouTube Summary with AI ChatGPT for Chrome & YouTube Summary with AI
ID cdjifpfganmhoojfclednjdnnpooaojb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-for-chrome-youtub/cdjifpfganmhoojfclednjdnnpooaojb
คำอธิบาย Access ChatGPT from the Chrome toolbar and get transcripts and summaries of YouTube videos. Powered by ChatGPT & Claude.
ขนาดไฟล์ 82.71 KB
จำนวนการติดตั้ง 282,486
เวอร์ชันปัจจุบัน 1.0.10
อัปเดตครั้งล่าสุด 2023-08-25
วันที่เผยแพร่ 2022-12-05
คะแนน 3.42/5 รวมทั้งหมด 85 คะแนน
ผู้พัฒนา https://glasp.co
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.glasp.co/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT for Chrome & YouTube Summary with AI",
    "version": "1.0.10",
    "manifest_version": 3,
    "description": "Access ChatGPT from the Chrome toolbar and get transcripts and summaries of YouTube videos. Powered by ChatGPT & Claude.",
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "images\/48.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/claude.ai\/*"
            ],
            "js": [
                "popup\/index.bundle.js",
                "contentscript\/index.bundle.js"
            ],
            "css": [
                "css\/yt_summary.css"
            ],
            "all_frames": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "48": "images\/48.png"
    }
}