Ask The Video
AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!
Ask The Video là gì?
Ask The Video là một tiện ích mở rộng Chrome được phát triển bởi https://askthe.video, và tính năng chính của nó là "AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ask The Video
Tải xuống các tệp mở rộng Ask The Video dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
#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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ask The Video |
ID | abedhpcjdaheeedikdakfmjapgoohfgc |
URL Chính Thức | https://chromewebstore.google.com/detail/ask-the-video/abedhpcjdaheeedikdakfmjapgoohfgc |
Mô tả | AI-powered Chrome extension that summarizes YouTube videos, saving time & boosting productivity. Get key points in a click! |
Kích Thước Tệp | 500 KB |
Số Lần Cài Đặt | 67 |
Phiên Bản Hiện Tại | 1.0.17 |
Cập Nhật Lần Cuối | 2023-07-05 |
Ngày Phát Hành | 2023-04-05 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://askthe.video |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://askthe.video |
URL Trang Trợ Giúp | https://askthe.video |
URL Trang Chính Sách Bảo Mật | https://aiocean.io/pages/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |