Image to Text for ChatGPT

Add OCR Image to Text to ChatGPT

Image to Text for ChatGPTคืออะไร?

Image to Text for ChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tshetrim Lhendup และคุณลักษณะหลักของมันคือ "Add OCR Image to Text to ChatGPT"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image to Text for ChatGPT

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

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

                        Update: Supports 12+ Major Languages! 

Full Tutorial Video: https://www.youtube.com/watch?v=zob0us4bPc8

This extension was born out of a need for a fast, quick and intuitive way to get text from images into the textbox for ChatGPT. This extension accomplishes this with a great degree of accuracy and average speeds of ~5 seconds or less.

Now, you don't have to switch between multiple tools just for Optical Character Recognition (OCR). With this extension, you can easily upload an image file or drag and drop it for conversion into text, which will automatically populate your ChatGPT textbox.

Additionally, if you have a screenshot in your clipboard, you can directly paste (Ctrl+V) it into the textbox. Quick, hassle-free, and highly efficient - this extension is built with a focus on speed, user-friendliness, and most importantly, privacy.

For the Tech Savvy: Powered by Tesseract.js, this extension runs OCR directly in your browser, keeping your data secure as none of your information leaves your device. All the OCR work is performed locally, ensuring maximum privacy.

But we understand that sometimes, you may need an extra level of precision or need to retain the original format of the image, especially when dealing with content like Python code. For such instances, we provide an option to enable an embedded third-party solution created by Pieces.app. Check out their service at: https://www.codefromscreenshot.com/

All source code for complete transparency can be found on GitHub at: https://github.com/Tshetrim/Image-To-Text-OCR-extension-for-ChatGPT

Join the Discord to share feedback, errors, or just chat: https://discord.gg/8hnkBhwTJ5

Disclaimer: Please note, if you opt to use the third-party embedded option, your privacy and data handling will be subject to their policy as this extension is not affiliated with them.

Invest in your productivity today with our Chrome GPT extension, and experience the future of text transcription!                    

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

ชื่อ Image to Text for ChatGPT Image to Text for ChatGPT
ID kihikabndlcbnpbgjapkhlonoddholga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-to-text-for-chatgpt/kihikabndlcbnpbgjapkhlonoddholga
คำอธิบาย Add OCR Image to Text to ChatGPT
ขนาดไฟล์ 122 MB
จำนวนการติดตั้ง 9,353
เวอร์ชันปัจจุบัน 0.0.0.9
อัปเดตครั้งล่าสุด 2024-01-02
วันที่เผยแพร่ 2023-05-26
คะแนน 4.08/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Tshetrim Lhendup
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Tshetrim/Image-To-Text-OCR-extension-for-ChatGPT
URL หน้าช่วยเหลือ https://github.com/Tshetrim/Image-To-Text-OCR-extension-for-ChatGPT/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Image to Text for ChatGPT",
    "version": "0.0.0.9",
    "description": "Add OCR Image to Text to ChatGPT",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/*",
                "images\/*"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js",
                "scripts\/tesseract.min.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}