Partial Page Translation
Changes the selected text on the browser to a desired language.
Co je Partial Page Translation?
Partial Page Translation je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Changes the selected text on the browser to a desired language.“.
Stáhnout soubor CRX rozšíření Partial Page Translation
Stáhněte si soubory rozšíření Partial Page Translation ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Partial Page Translation |
ID | oigbdcfeaabngmnlneokfcacklmpkofj |
Oficiální URL | https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj |
Popis | Changes the selected text on the browser to a desired language. |
Velikost souboru | 10.3 KB |
Počet instalací | 77 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-07-11 |
Datum Vydání | 2016-07-10 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | Unknown |
Typ Platby | free |
Podporované Jazyky | 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" } } |