Vowel
Allows you to schedule Vowel meetings easily from Google Calendar.
ما هو Vowel؟
Vowel هو إضافة Chrome تم تطويرها بواسطة https://vowel.com، والميزة الرئيسية لها هي "Allows you to schedule Vowel meetings easily from Google Calendar.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vowel
قم بتنزيل ملفات الامتداد Vowel بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The Vowel Chrome Extension allows users to create Vowel links directly in their Google Calendars. Once installed, creating and editing Google Calendar events will include a button to "Add a Vowel Meeting".
معلومات أساسية عن التمديد
الاسم | Vowel |
ID | npeeeceaaillpkbjdkgofmhnnloimihf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf |
الوصف | Allows you to schedule Vowel meetings easily from Google Calendar. |
حجم الملف | 431 KB |
عدد التثبيتات | 3,561 |
النسخة الحالية | 1.1.5 |
آخر تحديث | 2023-05-24 |
تاريخ النشر | 2020-05-05 |
تقييم | 5.00/5 مجموع تقييمات 14 |
المطور | https://vowel.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.vowel.com |
عنوان صفحة المساعدة | https://help.vowel.com/en/collections/2059983-vowel-faq |
عنوان صفحة سياسة الخصوصية | https://www.vowel.com/legal/privacy-policy |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.5", "name": "Vowel", "manifest_version": 3, "description": "Allows you to schedule Vowel meetings easily from Google Calendar.", "icons": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.vowel.com\/*" ], "permissions": [ "storage", "cookies" ], "omnibox": { "keyword": "vowel" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "calendar.js" ], "all_frames": false, "run_at": "document_end" }, { "matches": [ "*:\/\/*.vowel.com\/*" ], "js": [ "vowelWebAppInject.js" ], "all_frames": false, "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "\/images\/logo.svg" ], "matches": [ "https:\/\/*\/*" ] }, { "resources": [ "\/vowelWebApp.js" ], "matches": [ "*:\/\/*.vowel.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "minimum_chrome_version": "88" } |