Spot Translator

Just click and get the translation right below.

Spot Translator란 무엇입니까?

Spot Translator은(는) uoneway에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Just click and get the translation right below."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Most Intuitive Translation Assistant!

📌 With just one click, the translation appears right below the original text, allowing you to view both the original and its translation at a single glance. It's so intuitive!

📌 Supports DeepL, Google, and Naver Papago translation services.

📌 Available in 135 languages including English, Korean, Spanish, Chinese, and more.

Usage
- When hover over text while holding the Alt key, a blue box surrounding the text will be displayed. If you right-click on it, you'll see the translation just below the original.

-  By default, you can use translate by the Google Translate API. However, it is highly recommended to use the DeepL(or Naver Papago) API for higher quality translation.
This requires additional settings to use, see below for details:

https://uoneway.notion.site/Spot-Translator-1826d87aa2d845d093793cee0ca11b29                    

확장 프로그램 기본 정보

이름 Spot Translator Spot Translator
ID bgljcgcfhppljahbdkfgeldgfdjknpfa
공식 URL https://chromewebstore.google.com/detail/spot-translator/bgljcgcfhppljahbdkfgeldgfdjknpfa
설명 Just click and get the translation right below.
파일 크기 598 KB
설치 횟수 285
현재 버전 0.2.3
최근 업데이트 2023-12-17
출시 날짜 2021-03-01
평점 4.80/5 총 5 개의 평점
개발자 uoneway
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://uoneway.notion.site/Spot-Translator-1826d87aa2d845d093793cee0ca11b29
개인정보 보호 정책 페이지 URL https://uoneway.notion.site/On-the-spot-Translator-Privacy-Policy-for-Chrome-Extension-1203bad8c582447792b3dc2626416911
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.2.3",
    "manifest_version": 3,
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "options.html",
        "default_title": "Spot Translator"
    },
    "icons": {
        "48": "images\/icon.png"
    },
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/external\/jquery-3.7.1.min.js",
                "content-script\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/translator_icons\/*",
                "images\/icon.png"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": false
        }
    ],
    "options_ui": {
        "page": "options.html"
    }
}