ImageTrans

Translate images on websites

ImageTrans란 무엇입니까?

ImageTrans은(는) BasicCAT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Translate images on websites"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        An image translator. It uses ImageTrans to translate images on websites whether they are posters, brochures, comics, manga, manhua or webtoon. State-of-art OCR and machine translation services are used to guarantee the translation quality. 

** Please note that the desktop version of ImageTrans is a dependency. The plugin won't work without it. **

Usage:
1. Install the extension and ImageTrans.
2. Right click on the image to translate it.
3. If the context menu is disabled, use the shortcut (CTRL+SHIFT+F) to call the popup, use Tab to switch operations and press Enter to perform the operation.

Detailed guide: https://github.com/xulihang/ImageTrans_chrome_extension                    

확장 프로그램 기본 정보

이름 ImageTrans ImageTrans
ID lkijcgjookpddgfacoankphnpbinmhia
공식 URL https://chromewebstore.google.com/detail/imagetrans/lkijcgjookpddgfacoankphnpbinmhia
설명 Translate images on websites
파일 크기 65.1 KB
설치 횟수 6,335
현재 버전 1.4
최근 업데이트 2024-03-03
출시 날짜 2021-03-30
평점 1.41/5 총 29 개의 평점
개발자 BasicCAT
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.basiccat.org/imagetrans
도움말 페이지 URL https://www.basiccat.org/imagetrans
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImageTrans",
    "version": "1.4",
    "description": "Translate images on websites",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "getImage.js",
                "jquery-3.5.1.min.js"
            ],
            "css": [
                "cursor.css"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "imagetrans.png",
        "icons": {
            "128": "imagetrans.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+V"
            },
            "description": "Opens popup.html"
        }
    },
    "icons": {
        "16": "imagetrans.png",
        "48": "imagetrans.png",
        "128": "imagetrans.png"
    },
    "homepage_url": "https:\/\/www.basiccat.org\/imagetrans",
    "manifest_version": 3
}