Partial Page Translation

Changes the selected text on the browser to a desired language.

O que é Partial Page Translation?

Partial Page Translation é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Changes the selected text on the browser to a desired language.".

Baixar o arquivo CRX da Extensão Partial Page Translation

Baixe arquivos de extensão Partial Page Translation no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Partial Page Translation Partial Page Translation
ID oigbdcfeaabngmnlneokfcacklmpkofj
URL Oficial https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj
Descrição Changes the selected text on the browser to a desired language.
Tamanho do Arquivo 10.3 KB
Contagem de Instalações 77
Versão Atual 1.0
Última Atualização 2016-07-11
Data de Publicação 2016-07-10
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}