Pinyin OCR

An extension that uses OCR to convert a image to Pinyin

Qu'est-ce que Pinyin OCR ?

Pinyin OCR est une extension Chrome développée par Nekodigi, et sa fonction principale est "An extension that uses OCR to convert a image to Pinyin".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Pinyin OCR

Téléchargez les fichiers d'extension Pinyin OCR au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Pinyin OCR Pinyin OCR
ID pnaenhlejhkoamfjgcfmkpjekpodohga
URL Officiel https://chromewebstore.google.com/detail/pinyin-ocr/pnaenhlejhkoamfjgcfmkpjekpodohga
Description An extension that uses OCR to convert a image to Pinyin
Taille du Fichier 2.57 MB
Nombre d'Installations 290
Version Actuelle 1.2
Dernière Mise à Jour 2023-06-25
Date de Publication 2023-05-08
Évaluation 1.00/5 Total 1 Évaluations
Développeur Nekodigi
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://nekodigi.com/terms/privacy
Langues Prises en Charge 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\/*"
    ]
}