Partial Page Translation

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

Cos'è Partial Page Translation?

Partial Page Translation è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Changes the selected text on the browser to a desired language.".

Scarica il file CRX dell'estensione Partial Page Translation

Scarica i file di estensione Partial Page Translation in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Partial Page Translation Partial Page Translation
ID oigbdcfeaabngmnlneokfcacklmpkofj
URL Ufficiale https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj
Descrizione Changes the selected text on the browser to a desired language.
Dimensione del File 10.3 KB
Conteggio Installazioni 77
Versione Corrente 1.0
Ultimo Aggiornamento 2016-07-11
Data di Pubblicazione 2016-07-10
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
    }
}