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是由https://askthe.video開發的Chrome擴展程式,該擴展的主要功能是“AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!”。
擴展截圖
下載Ask The Video擴展crx文件
下載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 |
ID | abedhpcjdaheeedikdakfmjapgoohfgc |
官方網址 | 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 } ] } |