image-to-text

An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.

什么是image-to-text?

image-to-text是由marwan.sdeek.web开发的Chrome扩展程序,该扩展的主要功能是“An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载image-to-text扩展crx文件

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

扩展使用说明

                        Extract text from selected areas in web page, image, video or youtube.

image-to-text works just by selecting area need to extract text from.

image-to-text allows you to copy text from:
    - Web page contains text as an image or inside a video.
    - opened image in a tab
    - opened video in a tab

image-to-text also allows you to extract links.

image-to-text works offline. (That's why it's almost 12MB to include all needed files)                    

扩展基本信息

名称 image-to-text image-to-text
ID kheogcfapledldcmebojknkelnhpjlgd
官方URL https://chrome.google.com/webstore/detail/image-to-text/kheogcfapledldcmebojknkelnhpjlgd
简介 An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab.
文件大小 11.63 MB
安装次数 1,000
当前版本 0.0.1
更新时间 2020-06-01
上架时间 2020-06-01
评分 1.00/5 共4次评分
开发者 marwan.sdeek.web
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "image-to-text",
    "description": "An offline chrome extension to extract text from selected in a web page, image or video opened in chrome tab. ",
    "version": "0.0.1",
    "author": "MarwanSdeek ",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/crop_48.png",
        "128": "icons\/crop_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/inactive.png"
    },
    "background": {
        "scripts": [
            "tesseract.min.js",
            "background.js"
        ]
    }
}