Translate Anywhere

You can translate sentences that you select on the web page into various languages. You can also translate the whole page.

Translate Anywhere란 무엇입니까?

Translate Anywhere은(는) https://orca-soft.net/web에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can translate sentences that you select on the web page into various languages. You can also translate the whole page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        By using the icon located at the top right of the browser, you can translate the entire page or any entered text. Additionally, you can select specific text within the page and translate it directly from the right-click menu. This translation feature supports multiple languages, including English, Chinese, Korean, French, German, Italian, Spanish, and Portuguese.

*If the icon at the top right is not displayed, please click the jigsaw puzzle icon and pin the 'Translate Anywhere' icon.                    

확장 프로그램 기본 정보

이름 Translate Anywhere Translate Anywhere
ID hhimhiimpaicidimabokfbdokhpcnmoh
공식 URL https://chromewebstore.google.com/detail/translate-anywhere/hhimhiimpaicidimabokfbdokhpcnmoh
설명 You can translate sentences that you select on the web page into various languages. You can also translate the whole page.
파일 크기 93.25 KB
설치 횟수 72,557
현재 버전 4.1.0.1
최근 업데이트 2024-02-29
출시 날짜 2019-11-07
평점 3.89/5 총 53 개의 평점
개발자 https://orca-soft.net/web
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://orca-soft.net/web/
도움말 페이지 URL https://orca-soft.net/info/support.php?service=3
개인정보 보호 정책 페이지 URL https://orca-soft.net/chrome/pd/html/privacy_policy.html
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extentionTitle__",
    "description": "__MSG_extentionDescription__",
    "version": "4.1.0.1",
    "manifest_version": 2,
    "default_locale": "en",
    "homepage_url": "https:\/\/orca-soft.net\/web\/",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_extentionDefault_title__",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/app16.png",
        "32": "icons\/app32.png",
        "64": "icons\/app64.png",
        "128": "icons\/app128.png"
    },
    "background": {
        "scripts": [
            "jq.js",
            "bg.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "jq.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "jq.js",
        "trans.js",
        "popup.html",
        "frame.html",
        "resize.png"
    ]
}