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…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YouTube Text-Recognition 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    ]
}