ClipWords – Copy & Paste Text from Video
A browser extension to copy code and other text from videos.
ClipWords – Copy & Paste Text from Videoคืออะไร?
ClipWords – Copy & Paste Text from Video เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Frontend Masters และคุณลักษณะหลักของมันคือ "A browser extension to copy code and other text from videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ClipWords – Copy & Paste Text from Video
ดาวน์โหลดไฟล์ส่วนขยาย ClipWords – Copy & Paste Text from Video ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Introducing ClipWords BETA: the ultimate browser extension for students, developers, and learners of all kinds! With our innovative solution, you can effortlessly copy text and code from tutorial videos across any platform, including YouTube. Say goodbye to tedious note-taking and manual transcribing. To use ClipWords, simply click to activate the extension, then draw a box around the part of the video you want to extract text from. In just a few seconds, the extension will accurately recognize and copy the text for you, making it easy to save, share, or reference later. Worried about video quality affecting text recognition? No problem! ClipWords utilizes the full video resolution to ensure precise text and code extraction, even if your browser window is small. Please note that ClipWords is currently in beta. As we continue to develop and improve our groundbreaking extension, we encourage users to provide feedback and report any issues. Together, we can create the ultimate tool for efficient learning and seamless content extraction from tutorial videos. Try ClipWords today and revolutionize the way you learn!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ClipWords – Copy & Paste Text from Video |
ID | jiempblledklicpljhofljadhecpjfig |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/clipwords-%E2%80%93-copy-paste-te/jiempblledklicpljhofljadhecpjfig |
คำอธิบาย | A browser extension to copy code and other text from videos. |
ขนาดไฟล์ | 57.41 KB |
จำนวนการติดตั้ง | 1,014 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2023-04-12 |
วันที่เผยแพร่ | 2023-04-12 |
คะแนน | 1.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Frontend Masters |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://static.frontendmasters.com/assets/legal/PrivacyPolicy.pdf |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ClipWords \u2013 Copy & Paste Text from Video", "description": "A browser extension to copy code and other text from videos.", "version": "0.1.0", "icons": { "16": "images\/ClipWords-16.png", "32": "images\/ClipWords-32.png", "48": "images\/ClipWords-48.png", "128": "images\/ClipWords-128.png" }, "action": { "default_icon": { "16": "images\/ClipWords-16.png", "32": "images\/ClipWords-32.png", "48": "images\/ClipWords-48.png", "128": "images\/ClipWords-128.png" } }, "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "scripts\/tesseract.min.js" ], "matches": [ "*:\/\/*\/*" ], "css": [ "css\/style.css" ] } ] } |