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…

Co to jest YouTube Text-Recognition?

YouTube Text-Recognition to rozszerzenie Chrome opracowane przez Muhammed Ismail, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Text-Recognition

Pobierz pliki rozszerzeń YouTube Text-Recognition w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Text-Recognition YouTube Text-Recognition
ID eiobdpjhboagcihclljpjkkehnmiodlb
Oficjalny URL https://chromewebstore.google.com/detail/youtube-text-recognition/eiobdpjhboagcihclljpjkkehnmiodlb
Opis 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…
Rozmiar pliku 11.67 MB
Liczba instalacji 1,043
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-01-20
Data Publikacji 2021-01-20
Ocena 1.00/5 Łącznie 3 Oceny
Deweloper Muhammed Ismail
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}