ScanLingua

Scan, recognize and translate parts of your screen.

ScanLinguaとは何ですか?

ScanLinguaはSpaceHoboDevによって開発されたChromeの拡張機能で、その主な機能は「Scan, recognize and translate parts of your screen.」です。

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

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

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

拡張機能の使用方法

                        ScanLingua provides Japanese text recognition of selected screen areas with translation, kanji annotation and audio.

    - Check on subtitles, manga panels or any Japanese text;
    - Edit recognized text and alter annotations;
    - Create and export kanji cards to Anki via Anki-connect;
    - Free and open source.

ScanLingua use various Google APIs. 
Free API key creation is mandatory to use extension functions.

Source code: https://github.com/OuterSpaceHobo/ScanLingua                    

拡張機能の基本情報

名前 ScanLingua ScanLingua
ID mkkiocfjoeoolffbpldkglpfclmdiafn
公式URL https://chromewebstore.google.com/detail/scanlingua/mkkiocfjoeoolffbpldkglpfclmdiafn
説明 Scan, recognize and translate parts of your screen.
ファイルサイズ 248 KB
インストール数 288
現在のバージョン 0.0.3.2
最終更新日 2023-09-19
公開日 2023-04-05
評価 3.00/5 合計 2 レビュー
開発者 SpaceHoboDev
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://www.freeprivacypolicy.com/live/ea477aad-2400-459f-9cff-cf83e396fb5d
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScanLingua",
    "description": "Scan, recognize and translate parts of your screen.",
    "version": "0.0.3.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "index.js",
        "type": "module"
    },
    "minimum_chrome_version": "92",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_title": "ScanLingua",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "100": "icon-100.png"
    },
    "commands": {
        "take-screenshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S",
                "windows": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S",
                "chromeos": "Ctrl+Shift+S"
            },
            "description": "take-screenshot"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}