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
电子邮箱 [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\/*"
    ]
}