Partial Page Translation
Changes the selected text on the browser to a desired language.
Что такое Partial Page Translation?
Partial Page Translation - это расширение Chrome, разработанное Unknown, и его основная функция - "Changes the selected text on the browser to a desired language.".
Скачать файл CRX расширения Partial Page Translation
Скачайте файлы расширений Partial Page Translation в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | oigbdcfeaabngmnlneokfcacklmpkofj |
| Официальный URL | https://chromewebstore.google.com/detail/partial-page-translation/oigbdcfeaabngmnlneokfcacklmpkofj |
| Описание | Changes the selected text on the browser to a desired language. |
| Размер файла | 10.3 KB |
| Количество установок | 77 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2016-07-11 |
| Дата публикации | 2016-07-10 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | Unknown |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
}
} | |