Google Translate Right Click

Add a context menu item to translate for selected text at Google Translate.

Google Translate Right Click란 무엇입니까?

Google Translate Right Click은(는) https://sites.google.com/site/tientx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a context menu item to translate for selected text at Google Translate."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Google Translate Right Click 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Support multi-language via Google Translate                    

확장 프로그램 기본 정보

이름 Google Translate Right Click Google Translate Right Click
ID blbkkgcankcmdleleianggnfooalbjof
공식 URL https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof
설명 Add a context menu item to translate for selected text at Google Translate.
파일 크기 29.05 KB
설치 횟수 1,442
현재 버전 0.83
최근 업데이트 2020-07-14
출시 날짜 2020-06-28
평점 4.50/5 총 10 개의 평점
개발자 https://sites.google.com/site/tientx
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "script.js",
            "js\/common\/languages.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "googletranslate_128x128.png"
        },
        "default_popup": "options.html",
        "default_title": "Select the text you would like to translate, right mouse click and choose Google Translate"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/common\/languages.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Add a context menu item to translate for selected text at Google Translate.",
    "icons": {
        "128": "googletranslate_128x128.png"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "6",
    "name": "Google Translate Right Click",
    "permissions": [
        "contextMenus",
        "windows",
        "storage",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "0.83",
    "manifest_version": 2
}