Simple Translate

Quickly translate selected or typed text on web pages. Supports Google Translate and DeepL API.

Simple Translate란 무엇입니까?

Simple Translate은(는) Sienori에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly translate selected or typed text on web pages. Supports Google Translate and DeepL API."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        When you select text, the translation button pops up and the translation is displayed instantly.
If you enable "Do not display the button if translation is not required" option, you will not get frustrated by the button appearing when it is not necessary.

In the toolbar popup, translate the input text in real time.
If you enable "Automatically switch to the second language" option, you can do : When English is input, it is translated into Japanese, and when Japanese is input, it is translated into English.

You can also translate from the context menu.
You can select "Translate this page", "Translate selected text", and "Translate selected link" from the menu on the page or tab.

Supports Google Translate and DeepL API.

Firefox version: https://addons.mozilla.org/en/firefox/addon/simple-translate/
Edge version: https://microsoftedge.microsoft.com/addons/detail/cllnohpbfenopiakdcjmjcbaeapmkcdl                    

확장 프로그램 기본 정보

이름 Simple Translate Simple Translate
ID ibplnjkanclpjokhdolnendpplpjiace
공식 URL https://chromewebstore.google.com/detail/simple-translate/ibplnjkanclpjokhdolnendpplpjiace
설명 Quickly translate selected or typed text on web pages. Supports Google Translate and DeepL API.
파일 크기 423 KB
설치 횟수 128,432
현재 버전 2.8.2
최근 업데이트 2023-09-10
출시 날짜 2020-05-12
평점 4.56/5 총 317 개의 평점
개발자 Sienori
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://simple-translate.sienori.com
도움말 페이지 URL https://github.com/sienori/simple-translate
지원되는 언어 id,de,en,fil,fr,nl,no,vi,tr,ca,da,es,it,hu,pl,ro,fi,sv,cs,el,sr,bg,ru,uk,iw,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.8.2",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "permissions": [
        "",
        "storage",
        "contextMenus"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "512": "icons\/512.png",
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "48": "icons\/48.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "512": "icons\/512.png",
            "128": "icons\/128.png",
            "64": "icons\/64.png",
            "48": "icons\/48.png",
            "38": "icons\/38.png",
            "32": "icons\/32.png",
            "19": "icons\/19.png",
            "16": "icons\/16.png"
        },
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/512.png"
    ],
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_openPopupDescription__",
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            }
        },
        "translateSelectedText": {
            "description": "__MSG_translateTextMenu__",
            "suggested_key": {
                "default": "Ctrl+Space"
            }
        },
        "translatePage": {
            "description": "__MSG_translatePageMenu__"
        }
    }
}