ScanLingua

Scan, recognize and translate parts of your screen.

ScanLingua란 무엇입니까?

ScanLingua은(는) SpaceHoboDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scan, recognize and translate parts of your screen."입니다.

확장 프로그램 스크린샷

ScanLingua 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
            ]
        }
    ]
}