Pinyin OCR

An extension that uses OCR to convert a image to Pinyin

What is Pinyin OCR?

Pinyin OCR is a Chrome extension developed by Nekodigi, and its main feature is "An extension that uses OCR to convert a image to Pinyin".

Extension Screenshots

screenshot
screenshot

Download Pinyin OCR Extension CRX File

Download Pinyin OCR extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Pinyin OCR Pinyin OCR
ID pnaenhlejhkoamfjgcfmkpjekpodohga
Official URL https://chromewebstore.google.com/detail/pinyin-ocr/pnaenhlejhkoamfjgcfmkpjekpodohga
Description An extension that uses OCR to convert a image to Pinyin
File Size 2.57 MB
Installation Count 290
Current Version 1.2
Last Updated 2023-06-25
Publish Date 2023-05-08
Rating 1.00/5 Total 1 Ratings
Developer Nekodigi
Email [email protected]
Payment Type free
Privacy Policy Page URL https://nekodigi.com/terms/privacy
Supported Languages 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\/*"
    ]
}