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ファイルをダウンロード

Pinyin OCR拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
    ]
}