ImageToText

Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.

ImageToText क्या है?

ImageToText Pedro Henrique Santos Sousa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'."।

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

screenshot
screenshot

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

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

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

                        This extension allows you to copy text from any image on the internet, just like you do with normal text content. Simplicity, that is the goal with this application, right click the image, "copy image text" and that is it... you are ready to use and paste the text you saw in that particular image. 

It is useful for informational, ludicative, and code blocks images. Now you don't have to rewrite everything, use this extension and the problem is solved.

To be able to process the image, this extension uses OCR.Space API.                    

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

नाम ImageToText ImageToText
ID ojmelblegakdgcjacaclnlgdmifgppdb
आधिकारिक URL https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb
विवरण Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
फ़ाइल का आकार 34.94 KB
स्थापना संख्या 1,340
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2020-05-13
प्रकाशन तिथि 2020-05-12
रेटिंग 1.00/5 कुल 2 रेटिंग्स
डेवलपर Pedro Henrique Santos Sousa
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ImageToText",
    "description": "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "functions.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon_tool_bar.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "notifications"
    ]
}