GeText

Extension can get text from image using OCR engine

GeTextคืออะไร?

GeText เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Krishna และคุณลักษณะหลักของมันคือ "Extension can get text from image using OCR engine"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย GeText ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        It allows to grab Text from any image or current web page by cropping required context, its like a Image Reader help you easily get words out of any image. 

Many developers are struggling while writing code from tutorials, using this can get any code from on it, As a developer you don't always find code in text format.

Instructions to Use
1. Click on Browser icon
2. Crop what you want
3. Automatically it trigger to get code or text from the right side popup
4. Copy and close it

Version 3.0:
Bugs fixed,
Draggable popup
Dark and light modes are added,
Escape to close extension popup,

Shortcut Keys:-
Windows : Ctrl + M
Mac     : Command + M                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GeText GeText
ID dkcgooalhicnkfdiaejibmfjcgoiflfg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/getext/dkcgooalhicnkfdiaejibmfjcgoiflfg
คำอธิบาย Extension can get text from image using OCR engine
ขนาดไฟล์ 1.36 MB
จำนวนการติดตั้ง 2,919
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2021-05-24
วันที่เผยแพร่ 2021-02-01
คะแนน 2.87/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา Krishna
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "3.0",
    "name": "GeText",
    "description": "Extension can get text from image using OCR engine",
    "permissions": [
        "storage",
        "file:\/\/*",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "scripts\/bg.js"
        ]
    },
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "64": "img\/64.png",
        "128": "img\/128.png",
        "256": "img\/256.png",
        "512": "img\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/contentScript.js"
            ]
        }
    ],
    "browser_action": [],
    "web_accessible_resources": [
        "\/pages\/result.html",
        "scripts\/jquery-3.6.0.min"
    ],
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Initiate extension"
        }
    }
}