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是由Muhammed Ismail開發的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…”。
擴展截圖
下載YouTube Text-Recognition擴展crx文件
下載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 |
官方網址 | 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" ] } |