Vowel

Allows you to schedule Vowel meetings easily from Google Calendar.

Apa itu Vowel?

Vowel adalah ekstensi Chrome yang dikembangkan oleh https://vowel.com, dan fitur utamanya adalah "Allows you to schedule Vowel meetings easily from Google Calendar.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Vowel

Unduh file ekstensi Vowel dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Vowel Vowel
ID npeeeceaaillpkbjdkgofmhnnloimihf
URL Resmi https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf
Deskripsi Allows you to schedule Vowel meetings easily from Google Calendar.
Ukuran File 431 KB
Jumlah Instalasi 3,561
Versi Saat Ini 1.1.5
Terakhir Diperbarui 2023-05-24
Tanggal Publikasi 2020-05-05
Penilaian 5.00/5 Total 14 Penilaian
Pengembang https://vowel.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.vowel.com
URL Halaman Bantuan https://help.vowel.com/en/collections/2059983-vowel-faq
URL Halaman Kebijakan Privasi https://www.vowel.com/legal/privacy-policy
Bahasa yang Didukung 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"
}