Vowel

Allows you to schedule Vowel meetings easily from Google Calendar.

What is Vowel?

Vowel is a Chrome extension developed by https://vowel.com, and its main feature is "Allows you to schedule Vowel meetings easily from Google Calendar.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Vowel Extension CRX File

Download Vowel extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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".                    

Extension Basic Information

Name Vowel Vowel
ID npeeeceaaillpkbjdkgofmhnnloimihf
Official URL https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf
Description Allows you to schedule Vowel meetings easily from Google Calendar.
File Size 431 KB
Installation Count 3,561
Current Version 1.1.5
Last Updated 2023-05-24
Publish Date 2020-05-05
Rating 5.00/5 Total 14 Ratings
Developer https://vowel.com
Email [email protected]
Payment Type free
Extension Website https://www.vowel.com
Help Page URL https://help.vowel.com/en/collections/2059983-vowel-faq
Privacy Policy Page URL https://www.vowel.com/legal/privacy-policy
Supported Languages 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"
}