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