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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}