Pinyin OCR

An extension that uses OCR to convert a image to Pinyin

Pinyin OCRคืออะไร?

Pinyin OCR เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nekodigi และคุณลักษณะหลักของมันคือ "An extension that uses OCR to convert a image to Pinyin"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pinyin OCR

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}