Pinyin OCR

An extension that uses OCR to convert a image to Pinyin

Cos'è Pinyin OCR?

Pinyin OCR è un'estensione di Chrome sviluppata da Nekodigi, e la sua funzione principale è "An extension that uses OCR to convert a image to Pinyin".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Pinyin OCR

Scarica i file di estensione Pinyin OCR in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Pinyin OCR Pinyin OCR
ID pnaenhlejhkoamfjgcfmkpjekpodohga
URL Ufficiale https://chromewebstore.google.com/detail/pinyin-ocr/pnaenhlejhkoamfjgcfmkpjekpodohga
Descrizione An extension that uses OCR to convert a image to Pinyin
Dimensione del File 2.57 MB
Conteggio Installazioni 290
Versione Corrente 1.2
Ultimo Aggiornamento 2023-06-25
Data di Pubblicazione 2023-05-08
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Nekodigi
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://nekodigi.com/terms/privacy
Lingue Supportate 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\/*"
    ]
}