YouTube Text-Recognition
Ever wanted to copy text from a YouTube video? Well with extension, you can! Simply: 1. Go to the video where you want to copy…
YouTube Text-Recognitionคืออะไร?
YouTube Text-Recognition เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Muhammed Ismail และคุณลักษณะหลักของมันคือ "Ever wanted to copy text from a YouTube video? Well with extension, you can! Simply: 1. Go to the video where you want to copy…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Text-Recognition
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Text-Recognition ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wanted to copy text from a YouTube video? Well with extension, you can! Simply: 1. Go to the video where you want to copy text from. 2. Open the extension's popup and click on the recognize button. 3. Select the text that you want the extension to recognize. 4. Wait for the text to be recognized. And that's it!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Text-Recognition |
ID | eiobdpjhboagcihclljpjkkehnmiodlb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-text-recognition/eiobdpjhboagcihclljpjkkehnmiodlb |
คำอธิบาย | Ever wanted to copy text from a YouTube video? Well with extension, you can! Simply: 1. Go to the video where you want to copy… |
ขนาดไฟล์ | 11.67 MB |
จำนวนการติดตั้ง | 1,043 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2021-01-20 |
วันที่เผยแพร่ | 2021-01-20 |
คะแนน | 1.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Muhammed Ismail |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Text-Recognition", "version": "0.1", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "css": [ "content\/content.css", "lib\/cropper.css" ], "js": [ "lib\/jquery.min.js", "lib\/cropper.min.js", "lib\/color-thief.min.js", "lib\/tesseract.min.js", "content\/content.js" ] } ], "browser_action": { "default_icon": "res\/youtube(amin).png", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ "lib\/worker.min.js", "lib\/tesseract-core.wasm.js", "lang-data\/*.traineddata.gz" ], "permissions": [ "activeTab" ] } |