Partial Page Translation
Changes the selected text on the browser to a desired language.
¿Qué es Partial Page Translation?
Partial Page Translation es una extensión de Chrome desarrollada por Unknown, y su función principal es "Changes the selected text on the browser to a desired language.".
Descargar Archivo CRX de la Extensión Partial Page Translation
Descarga archivos de extensión Partial Page Translation 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
Need to translate part of a page (but not the entire thing)? Partial Page Translation is for you. Ideal for people learning languages that need to translate a phrase here or there. Select text, right click, translate. New text will appear on the page itself.
Información Básica de la Extensión
Nombre | Partial Page Translation |
ID | oigbdcfeaabngmnlneokfcacklmpkofj |
URL Oficial | https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj |
Descripción | Changes the selected text on the browser to a desired language. |
Tamaño del Archivo | 10.3 KB |
Cantidad de Instalaciones | 77 |
Versión Actual | 1.0 |
Última Actualización | 2016-07-11 |
Fecha de Publicación | 2016-07-10 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Partial Page Translation", "description": "Changes the selected text on the browser to a desired language.", "version": "1.0", "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "activeTab" ], "icons": { "16": "16px.png", "48": "48px.png", "128": "128px.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Select Translate", "default_popup": "popup.html" } } |