Vowel

Allows you to schedule Vowel meetings easily from Google Calendar.

Hvad er Vowel?

Vowel er en Chrome-udvidelse udviklet af https://vowel.com, og dens hovedfunktion er "Allows you to schedule Vowel meetings easily from Google Calendar.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Vowel-udvidelses-CRX-fil

Download Vowel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Vowel Vowel
ID npeeeceaaillpkbjdkgofmhnnloimihf
Officiel URL https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf
Beskrivelse Allows you to schedule Vowel meetings easily from Google Calendar.
Filstørrelse 431 KB
Antal Installationer 3,561
Nuværende Version 1.1.5
Senest Opdateret 2023-05-24
Udgivelsesdato 2020-05-05
Bedømmelse 5.00/5 Samlet 14 Bedømmelser
Udvikler https://vowel.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.vowel.com
Hjælpeside-URL https://help.vowel.com/en/collections/2059983-vowel-faq
URL til Fortrolighedspolitik Side https://www.vowel.com/legal/privacy-policy
Understøttede Sprog 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"
}