Google Translate Right Click
Add a context menu item to translate for selected text at Google Translate.
ما هو Google Translate Right Click؟
Google Translate Right Click هو إضافة Chrome تم تطويرها بواسطة https://sites.google.com/site/tientx، والميزة الرئيسية لها هي "Add a context menu item to translate for selected text at Google Translate.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Translate Right Click
قم بتنزيل ملفات الامتداد Google Translate Right Click بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Support multi-language via Google Translate
معلومات أساسية عن التمديد
الاسم | Google Translate Right Click |
ID | blbkkgcankcmdleleianggnfooalbjof |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof |
الوصف | Add a context menu item to translate for selected text at Google Translate. |
حجم الملف | 29.05 KB |
عدد التثبيتات | 1,442 |
النسخة الحالية | 0.83 |
آخر تحديث | 2020-07-14 |
تاريخ النشر | 2020-06-28 |
تقييم | 4.50/5 مجموع تقييمات 10 |
المطور | https://sites.google.com/site/tientx |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "script.js", "js\/common\/languages.js" ] }, "browser_action": { "default_icon": { "128": "googletranslate_128x128.png" }, "default_popup": "options.html", "default_title": "Select the text you would like to translate, right mouse click and choose Google Translate" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/common\/languages.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Add a context menu item to translate for selected text at Google Translate.", "icons": { "128": "googletranslate_128x128.png" }, "options_page": "options.html", "minimum_chrome_version": "6", "name": "Google Translate Right Click", "permissions": [ "contextMenus", "windows", "storage", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "version": "0.83", "manifest_version": 2 } |