Ask The Video

AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!

Ask The Videoคืออะไร?

Ask The Video เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://askthe.video และคุณลักษณะหลักของมันคือ "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ask The Video

ดาวน์โหลดไฟล์ส่วนขยาย Ask The Video ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        #ChatGPT #No_API_KEY_Needed

Ask The Video is a powerful and user-friendly extension designed to enhance your YouTube experience by providing concise summaries of videos, allowing you to quickly grasp the key takeaways and main points without watching the entire content.

Key Features:

1.  News Summary: Get concise breakdowns of news videos, helping you stay informed without watching lengthy content.
    
2.  Question & Answer: Enter your query, and the extension finds the relevant information within the video, saving time.
        
3.  Write tweet: Automatically generate and share engaging tweets based on the video's highlights.

Change logs:

V1.0.16: 4 May, 2023

- Support new Youtube UI                    

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

ชื่อ Ask The Video Ask The Video
ID abedhpcjdaheeedikdakfmjapgoohfgc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ask-the-video/abedhpcjdaheeedikdakfmjapgoohfgc
คำอธิบาย AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!
ขนาดไฟล์ 500 KB
จำนวนการติดตั้ง 67
เวอร์ชันปัจจุบัน 1.0.17
อัปเดตครั้งล่าสุด 2023-07-05
วันที่เผยแพร่ 2023-04-05
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://askthe.video
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://askthe.video
URL หน้าช่วยเหลือ https://askthe.video
URL หน้านโยบายความเป็นส่วนตัว https://aiocean.io/pages/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ask The Video",
    "description": "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!",
    "version": "1.0.17",
    "author": "[email protected]",
    "icons": {
        "16": "assets\/icon16.png",
        "32": "assets\/icon32.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.content.ts.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "assets\/content.css"
            ]
        },
        {
            "js": [
                "assets\/content-script-loader.content-chatgpt.ts.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "css": [
                "assets\/content-chatgpt.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/askthevideo.web.app\/*"
        ]
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "assets\/content.ts.js"
            ],
            "use_dynamic_url": true
        },
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "assets\/content-chatgpt.ts.js"
            ],
            "use_dynamic_url": true
        }
    ]
}