Vowel

Allows you to schedule Vowel meetings easily from Google Calendar.

Vowel là gì?

Vowel là một tiện ích mở rộng Chrome được phát triển bởi https://vowel.com, và tính năng chính của nó là "Allows you to schedule Vowel meetings easily from Google Calendar.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vowel

Tải xuống các tệp mở rộng Vowel dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vowel Vowel
ID npeeeceaaillpkbjdkgofmhnnloimihf
URL Chính Thức https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf
Mô tả Allows you to schedule Vowel meetings easily from Google Calendar.
Kích Thước Tệp 431 KB
Số Lần Cài Đặt 3,561
Phiên Bản Hiện Tại 1.1.5
Cập Nhật Lần Cuối 2023-05-24
Ngày Phát Hành 2020-05-05
Đánh Giá 5.00/5 Tổng số 14 Đánh Giá
Nhà Phát Triển https://vowel.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.vowel.com
URL Trang Trợ Giúp https://help.vowel.com/en/collections/2059983-vowel-faq
URL Trang Chính Sách Bảo Mật https://www.vowel.com/legal/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
}