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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
}
} | |