GeText

Extension can get text from image using OCR engine

GeTextとは何ですか?

GeTextはKrishnaによって開発されたChromeの拡張機能で、その主な機能は「Extension can get text from image using OCR engine」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

GeText拡張機能のCRXファイルをダウンロード

GeText拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        It allows to grab Text from any image or current web page by cropping required context, its like a Image Reader help you easily get words out of any image. 

Many developers are struggling while writing code from tutorials, using this can get any code from on it, As a developer you don't always find code in text format.

Instructions to Use
1. Click on Browser icon
2. Crop what you want
3. Automatically it trigger to get code or text from the right side popup
4. Copy and close it

Version 3.0:
Bugs fixed,
Draggable popup
Dark and light modes are added,
Escape to close extension popup,

Shortcut Keys:-
Windows : Ctrl + M
Mac     : Command + M                    

拡張機能の基本情報

名前 GeText GeText
ID dkcgooalhicnkfdiaejibmfjcgoiflfg
公式URL https://chromewebstore.google.com/detail/getext/dkcgooalhicnkfdiaejibmfjcgoiflfg
説明 Extension can get text from image using OCR engine
ファイルサイズ 1.36 MB
インストール数 2,919
現在のバージョン 3.0
最終更新日 2021-05-24
公開日 2021-02-01
評価 2.87/5 合計 15 レビュー
開発者 Krishna
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "3.0",
    "name": "GeText",
    "description": "Extension can get text from image using OCR engine",
    "permissions": [
        "storage",
        "file:\/\/*",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "scripts\/bg.js"
        ]
    },
    "icons": {
        "16": "img\/16.png",
        "32": "img\/32.png",
        "48": "img\/48.png",
        "64": "img\/64.png",
        "128": "img\/128.png",
        "256": "img\/256.png",
        "512": "img\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/contentScript.js"
            ]
        }
    ],
    "browser_action": [],
    "web_accessible_resources": [
        "\/pages\/result.html",
        "scripts\/jquery-3.6.0.min"
    ],
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Initiate extension"
        }
    }
}