Copy from Image (OCR)

Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!

Copy from Image (OCR) क्या है?

Copy from Image (OCR) Dusan Stanojevic द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Copy from Image (OCR) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!

Simple extension allowing you to take full advantage of modern AI tech to extract the text from any image.

The extension is in V1 and currently supports english as the base language.

When you select a piece of text a green checkmark will show up in the top left corner of the website to indicate the text was successfully extracted and inserted into your clipboard.

If you have any questions or suggestions or run into issues feel free to reach out @ [email protected].

---------------------------------------------------------------

Icons made by Smashicons from www.flaticon.com
Icons made by Freepik from www.flaticon.com

एक्सटेंशन की मूल जानकारी

नाम Copy from Image (OCR) Copy from Image (OCR)
ID kghlkhjinfkgjcicbelkhikebgdlpnee
आधिकारिक URL https://chrome.google.com/webstore/detail/copy-from-image-ocr/kghlkhjinfkgjcicbelkhikebgdlpnee
विवरण Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!
फ़ाइल का आकार 29.99 KB
स्थापना संख्या 1,337
वर्तमान संस्करण 1.1
अंतिम अपडेट 2021-07-22
प्रकाशन तिथि 2021-07-15
रेटिंग 2.77/5 कुल 13 रेटिंग्स
डेवलपर Dusan Stanojevic
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy from Image (OCR)",
    "description": "Press 'Shift' -> Select a part of an image -> Paste the extracted text anywhere!",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tesseract.min.js",
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}