Google Voice (by Google)
Make calls with Google Voice with a click.
ما هو Google Voice (by Google)؟
Google Voice (by Google) هو إضافة Chrome تم تطويرها بواسطة https://voice.google.com، والميزة الرئيسية لها هي "Make calls with Google Voice with a click.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Voice (by Google)
قم بتنزيل ملفات الامتداد Google Voice (by Google) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Extension Features: - Makes phone numbers on websites callable via Google Voice by just clicking on them. - If a phone number doesn't turn into a link, you can select the text with your mouse and right-click to make a call (note: might not work with all numbers). Info: - If you don't like the extension turning numbers into Voice icon links, you can turn it off in the extension options.
معلومات أساسية عن التمديد
الاسم | Google Voice (by Google) |
ID | kcnhkahnjcbndmmehfkdnkjomaanaooo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-voice-by-google/kcnhkahnjcbndmmehfkdnkjomaanaooo |
الوصف | Make calls with Google Voice with a click. |
حجم الملف | 964 KB |
عدد التثبيتات | 707,917 |
النسخة الحالية | 3.0.11 |
آخر تحديث | 2022-01-06 |
تاريخ النشر | 2020-04-29 |
تقييم | 3.97/5 مجموع تقييمات 6286 |
المطور | https://voice.google.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://voice.google.com/about |
عنوان صفحة المساعدة | https://support.google.com/voice/?hl=en#topic=1707989 |
عنوان صفحة سياسة الخصوصية | https://www.google.com/policies/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Voice (by Google)", "version": "3.0.11", "description": "Make calls with Google Voice with a click.", "manifest_version": 3, "icons": { "16": "\/images\/logo_voice_2020q4_color_2x_web_16dp.png", "32": "\/images\/logo_voice_2020q4_color_2x_web_32dp.png", "48": "\/images\/logo_voice_2020q4_color_2x_web_48dp.png", "128": "\/images\/logo_voice_2020q4_color_2x_web_96dp.png" }, "permissions": [ "storage", "activeTab", "contextMenus" ], "background": { "service_worker": "background_js.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "contentscript.css" ], "js": [ "contentscript_js.js" ], "all_frames": true } ], "options_page": "options.html" } |