Vowel
Allows you to schedule Vowel meetings easily from Google Calendar.
Vowel क्या है?
Vowel https://vowel.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to schedule Vowel meetings easily from Google Calendar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Vowel एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | https://help.vowel.com/en/collections/2059983-vowel-faq |
गोपनीयता नीति पृष्ठ URL | 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" } |