Pinyin OCR

An extension that uses OCR to convert a image to Pinyin

Pinyin OCR란 무엇입니까?

Pinyin OCR은(는) Nekodigi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that uses OCR to convert a image to Pinyin"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Pinyin OCR 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Feature

・Scan Chinese from Image.
・Scan any text in pages.
・Display pinyin for Chinese.
・Display translation in English
・Select any language text to convert Chinese

Source Code

・Backend
https://github.com/Nekodigi/pinyin-ocr-backend
・Frontend
https://github.com/Nekodigi/pinyin-ocr-frontend                    

확장 프로그램 기본 정보

이름 Pinyin OCR Pinyin OCR
ID pnaenhlejhkoamfjgcfmkpjekpodohga
공식 URL https://chromewebstore.google.com/detail/pinyin-ocr/pnaenhlejhkoamfjgcfmkpjekpodohga
설명 An extension that uses OCR to convert a image to Pinyin
파일 크기 2.57 MB
설치 횟수 290
현재 버전 1.2
최근 업데이트 2023-06-25
출시 날짜 2023-05-08
평점 1.00/5 총 1 개의 평점
개발자 Nekodigi
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://nekodigi.com/terms/privacy
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pinyin OCR",
    "description": "An extension that uses OCR to convert a image to Pinyin",
    "version": "1.2",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/background.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/github-readme-stats.vercel.app\/*"
    ]
}