Vowel

Allows you to schedule Vowel meetings easily from Google Calendar.

Qu'est-ce que Vowel ?

Vowel est une extension Chrome développée par https://vowel.com, et sa fonction principale est "Allows you to schedule Vowel meetings easily from Google Calendar.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Vowel

Téléchargez les fichiers d'extension Vowel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Vowel Vowel
ID npeeeceaaillpkbjdkgofmhnnloimihf
URL Officiel https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf
Description Allows you to schedule Vowel meetings easily from Google Calendar.
Taille du Fichier 431 KB
Nombre d'Installations 3,561
Version Actuelle 1.1.5
Dernière Mise à Jour 2023-05-24
Date de Publication 2020-05-05
Évaluation 5.00/5 Total 14 Évaluations
Développeur https://vowel.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.vowel.com
URL de la Page d'Aide https://help.vowel.com/en/collections/2059983-vowel-faq
URL de la Page de Politique de Confidentialité https://www.vowel.com/legal/privacy-policy
Langues Prises en Charge 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"
}