Translation on selection

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

¿Qué es Translation on selection?

Translation on selection es una extensión de Chrome desarrollada por vladodriver, y su función principal es "Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Translation on selection

Descarga archivos de extensión Translation on selection en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Translation on selection Translation on selection
ID eepnfgpbliefeomgndikgopjomjelbhd
URL Oficial https://chromewebstore.google.com/detail/translation-on-selection/eepnfgpbliefeomgndikgopjomjelbhd
Descripción Manipulation, language translation and speak any html selection range on webpage using Goole Translate and Google TTS service.
Tamaño del Archivo 32.41 KB
Cantidad de Instalaciones 806
Versión Actual 1.0.2
Última Actualización 2016-11-07
Fecha de Publicación 2016-11-07
Calificación 3.58/5 Total de 12 Calificaciones
Desarrollador vladodriver
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/vladodriver/translate-selection
URL de la Página de Ayuda https://github.com/vladodriver/translate-selection/issues
Idiomas Soportados 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"
    }
}