Translate Scanner
This extension is made by Salure for AFAS translate purposes
ما هو Translate Scanner؟
Translate Scanner هو إضافة Chrome تم تطويرها بواسطة Salure ICT، والميزة الرئيسية لها هي "This extension is made by Salure for AFAS translate purposes".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Translate Scanner
قم بتنزيل ملفات الامتداد Translate Scanner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.
معلومات أساسية عن التمديد
الاسم | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
الوصف | This extension is made by Salure for AFAS translate purposes |
حجم الملف | 461 KB |
عدد التثبيتات | 37 |
النسخة الحالية | 2.1.2 |
آخر تحديث | 2023-07-18 |
تاريخ النشر | 2023-03-19 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Salure ICT |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Translate Scanner", "description": "This extension is made by Salure for AFAS translate purposes", "version": "2.1.2", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "service_worker": "service_worker.js" }, "permissions": [ "activeTab", "tabs", "storage" ], "action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Salure Translate" }, "content_security_policy": [] } |