Video Note & Screenshot
Go to take YouTube notes or screenshot YouTube.
Video Note & Screenshotคืออะไร?
Video Note & Screenshot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gemoo Inc. และคุณลักษณะหลักของมันคือ "Go to take YouTube notes or screenshot YouTube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Note & Screenshot
ดาวน์โหลดไฟล์ส่วนขยาย Video Note & Screenshot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This tool helps you take screenshots from a YouTube video and extract text from the video. Check the main features: 1.Video Transcription Transcribe video to text by extracting the subtitles/closed captions. 2.Extract Text from Video Screenshots Take screenshots from the video and use the OCR function to extract text information from the video's screenshots. 3. Take screenshots from YouTube Video quickly.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Video Note & Screenshot |
ID | miedbfijmibcgjjmhdccocldliepbfng |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng |
คำอธิบาย | Go to take YouTube notes or screenshot YouTube. |
ขนาดไฟล์ | 16.58 KB |
จำนวนการติดตั้ง | 5,319 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2023-08-15 |
วันที่เผยแพร่ | 2023-06-18 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Gemoo Inc. |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://gemoo.com/tools/video-note-taking |
URL หน้าช่วยเหลือ | https://gemoo.com/support/ |
URL หน้านโยบายความเป็นส่วนตัว | https://gemoo.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Note & Screenshot", "description": "Go to take YouTube notes or screenshot YouTube.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "tabs", "activeTab", "webRequest", "scripting", "downloads" ], "host_permissions": [ "*:\/\/*\/*", "https:\/\/*.gemoo.com\/*", "https:\/\/*.youtube.com\/*" ], "action": { "default_title": "Video Note & Screenshot", "default_popup": "index.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.gemoo.com\/*" ], "css": [ "assets\/content.css" ], "js": [ "my-content-script.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ] } |