Translation on selection

Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.

Translation on selection란 무엇입니까?

Translation on selection은(는) vladodriver에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service."입니다.

확장 프로그램 스크린샷

screenshot

Translation on selection 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features

- translate selection as to HTML formated popup contains style same as in webpage
- create translation popup on same position as selection range when pres translate key. (T)
- click switch target to source language and back
- click and drag move the translation popup
- click width holding resize key to resize popup (Ctrl)
- click width holding freeze key to freeze and select text on popup (Shift)
- experimental Google TTS voice on supported languages width press TTS key (V)
- double click to delete popup
- any manipulated translation popup is always above, have focus and language HTML atribute.
- smooth color difference source, target language and waiting on data state.
- multiple versions target and source language on same webpage, user settings change realtime, no need refresh webpage.
- i18n messages: en, cs...

User settings on extension popup

- translate and voice KEY (A - Z)
- resize and freeze KEY (Ctrl or Shift)
- source and target languages
- reset settings
- enable/disable for any domain URL
- editing (delete) list blocked URLs                    

확장 프로그램 기본 정보

이름 Translation on selection Translation on selection
ID eepnfgpbliefeomgndikgopjomjelbhd
공식 URL https://chromewebstore.google.com/detail/translation-on-selection/eepnfgpbliefeomgndikgopjomjelbhd
설명 Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.
파일 크기 32.41 KB
설치 횟수 806
현재 버전 1.0.2
최근 업데이트 2016-11-07
출시 날짜 2016-11-07
평점 3.58/5 총 12 개의 평점
개발자 vladodriver
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/vladodriver/translate-selection
도움말 페이지 URL https://github.com/vladodriver/translate-selection/issues
지원되는 언어 en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Translation on selection",
    "default_locale": "en",
    "manifest_version": 2,
    "version": "1.0.2",
    "description": "Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.",
    "content_scripts": [
        {
            "js": [
                "Model.js",
                "View.js",
                "Controler.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "__MSG_icon_popup_title__",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}