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开发的Chrome扩展程序,该扩展的主要功能是“Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.”。

扩展截图

screenshot
screenshot

下载ImageToText扩展crx文件

下载ImageToText扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}