image-to-text

An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.

image-to-text란 무엇입니까?

image-to-text은(는) marwan.sdeek.web에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

image-to-text 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Extract text from selected areas in web page, image, video or youtube.

image-to-text works just by selecting area need to extract text from.

image-to-text allows you to copy text from:
    - Web page contains text as an image or inside a video.
    - opened image in a tab
    - opened video in a tab

image-to-text also allows you to extract links.

image-to-text works offline. (That's why it's almost 12MB to include all needed files)                    

확장 프로그램 기본 정보

이름 image-to-text image-to-text
ID kheogcfapledldcmebojknkelnhpjlgd
공식 URL https://chrome.google.com/webstore/detail/image-to-text/kheogcfapledldcmebojknkelnhpjlgd
설명 An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.
파일 크기 11.63 MB
설치 횟수 1,000
현재 버전 0.0.1
최근 업데이트 2020-06-01
출시 날짜 2020-06-01
평점 1.00/5 총 4 개의 평점
개발자 marwan.sdeek.web
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "image-to-text",
    "description": "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab. ",
    "version": "0.0.1",
    "author": "MarwanSdeek ",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/crop_48.png",
        "128": "icons\/crop_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/inactive.png"
    },
    "background": {
        "scripts": [
            "tesseract.min.js",
            "background.js"
        ]
    }
}