Partial Page Translation
Changes the selected text on the browser to a desired language.
Co to jest Partial Page Translation?
Partial Page Translation to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Changes the selected text on the browser to a desired language.”.
Pobierz plik CRX rozszerzenia Partial Page Translation
Pobierz pliki rozszerzeń Partial Page Translation w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Partial Page Translation |
ID | oigbdcfeaabngmnlneokfcacklmpkofj |
Oficjalny URL | https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj |
Opis | Changes the selected text on the browser to a desired language. |
Rozmiar pliku | 10.3 KB |
Liczba instalacji | 77 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-07-11 |
Data Publikacji | 2016-07-10 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |