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 |
Eメール | [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" ] } |