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…
Vad är YouTube Text-Recognition?
YouTube Text-Recognition är en Chrome-tillägg utvecklad av Muhammed Ismail, och dess huvudfunktion är "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…".
Tilläggsskärmbilder
Ladda ner YouTube Text-Recognition-förlängningens CRX-fil
Ladda ner YouTube Text-Recognition-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | YouTube Text-Recognition |
ID | eiobdpjhboagcihclljpjkkehnmiodlb |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-text-recognition/eiobdpjhboagcihclljpjkkehnmiodlb |
Beskrivning | 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… |
Filstorlek | 11.67 MB |
Antal Installationer | 1,043 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2021-01-20 |
Publiceringsdatum | 2021-01-20 |
Betyg | 1.00/5 Totalt 3 Betyg |
Utvecklare | Muhammed Ismail |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |