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…

Was ist YouTube Text-Recognition?

YouTube Text-Recognition ist eine Chrome-Erweiterung, die von Muhammed Ismail entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube Text-Recognition-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Text-Recognition-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name YouTube Text-Recognition YouTube Text-Recognition
ID eiobdpjhboagcihclljpjkkehnmiodlb
Offizielle URL https://chromewebstore.google.com/detail/youtube-text-recognition/eiobdpjhboagcihclljpjkkehnmiodlb
Beschreibung 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…
Dateigröße 11.67 MB
Installationsanzahl 1,043
Aktuelle Version 0.1
Letztes Update 2021-01-20
Veröffentlichungsdatum 2021-01-20
Bewertung 1.00/5 Insgesamt 3 Bewertungen
Entwickler Muhammed Ismail
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}