Partial Page Translation

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

Wat is Partial Page Translation?

Partial Page Translation is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Changes the selected text on the browser to a desired language.".

Download het CRX-bestand van de extensie Partial Page Translation

Download Partial Page Translation-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Partial Page Translation Partial Page Translation
ID oigbdcfeaabngmnlneokfcacklmpkofj
Officiële URL https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj
Beschrijving Changes the selected text on the browser to a desired language.
Bestandsgrootte 10.3 KB
Aantal Installaties 77
Huidige Versie 1.0
Laatst Bijgewerkt 2016-07-11
Publicatiedatum 2016-07-10
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    }
}