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…
Cos'è YouTube Text-Recognition?
YouTube Text-Recognition è un'estensione di Chrome sviluppata da Muhammed Ismail, e la sua funzione principale è "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…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Text-Recognition
Scarica i file di estensione YouTube Text-Recognition in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | YouTube Text-Recognition |
ID | eiobdpjhboagcihclljpjkkehnmiodlb |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-text-recognition/eiobdpjhboagcihclljpjkkehnmiodlb |
Descrizione | 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… |
Dimensione del File | 11.67 MB |
Conteggio Installazioni | 1,043 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2021-01-20 |
Data di Pubblicazione | 2021-01-20 |
Valutazione | 1.00/5 Totale 3 Valutazioni |
Sviluppatore | Muhammed Ismail |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |