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 |
官方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" ] } |