ScanLingua

Scan, recognize and translate parts of your screen.

ScanLingua là gì?

ScanLingua là một tiện ích mở rộng Chrome được phát triển bởi SpaceHoboDev, và tính năng chính của nó là "Scan, recognize and translate parts of your screen.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng ScanLingua

Tải xuống các tệp mở rộng ScanLingua dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ScanLingua ScanLingua
ID mkkiocfjoeoolffbpldkglpfclmdiafn
URL Chính Thức https://chromewebstore.google.com/detail/scanlingua/mkkiocfjoeoolffbpldkglpfclmdiafn
Mô tả Scan, recognize and translate parts of your screen.
Kích Thước Tệp 248 KB
Số Lần Cài Đặt 288
Phiên Bản Hiện Tại 0.0.3.2
Cập Nhật Lần Cuối 2023-09-19
Ngày Phát Hành 2023-04-05
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển SpaceHoboDev
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/ea477aad-2400-459f-9cff-cf83e396fb5d
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}