Pinyin OCR

An extension that uses OCR to convert a image to Pinyin

Wat is Pinyin OCR?

Pinyin OCR is een Chrome-extensie ontwikkeld door Nekodigi, en de belangrijkste functie is "An extension that uses OCR to convert a image to Pinyin".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Pinyin OCR

Download Pinyin OCR-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Pinyin OCR Pinyin OCR
ID pnaenhlejhkoamfjgcfmkpjekpodohga
Officiële URL https://chromewebstore.google.com/detail/pinyin-ocr/pnaenhlejhkoamfjgcfmkpjekpodohga
Beschrijving An extension that uses OCR to convert a image to Pinyin
Bestandsgrootte 2.57 MB
Aantal Installaties 290
Huidige Versie 1.2
Laatst Bijgewerkt 2023-06-25
Publicatiedatum 2023-05-08
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Nekodigi
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://nekodigi.com/terms/privacy
Ondersteunde Talen 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\/*"
    ]
}