Partial Page Translation

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

Qu'est-ce que Partial Page Translation ?

Partial Page Translation est une extension Chrome développée par Unknown, et sa fonction principale est "Changes the selected text on the browser to a desired language.".

Télécharger le fichier CRX de l'extension Partial Page Translation

Téléchargez les fichiers d'extension Partial Page Translation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Partial Page Translation Partial Page Translation
ID oigbdcfeaabngmnlneokfcacklmpkofj
URL Officiel https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj
Description Changes the selected text on the browser to a desired language.
Taille du Fichier 10.3 KB
Nombre d'Installations 77
Version Actuelle 1.0
Dernière Mise à Jour 2016-07-11
Date de Publication 2016-07-10
Évaluation 3.00/5 Total 2 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    }
}