Vowel
Allows you to schedule Vowel meetings easily from Google Calendar.
什么是Vowel?
Vowel是由https://vowel.com开发的Chrome扩展程序,该扩展的主要功能是“Allows you to schedule Vowel meetings easily from Google Calendar.”。
扩展截图
下载Vowel扩展crx文件
下载Vowel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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". 扩展基本信息
| 名称 | |
| ID | npeeeceaaillpkbjdkgofmhnnloimihf |
| 官方URL | https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf |
| 简介 | Allows you to schedule Vowel meetings easily from Google Calendar. |
| 文件大小 | 431 KB |
| 安装次数 | 3,561 |
| 当前版本 | 1.1.5 |
| 更新时间 | 2023-05-24 |
| 上架时间 | 2020-05-05 |
| 评分 | 5.00/5 共14次评分 |
| 开发者 | https://vowel.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.vowel.com |
| 帮助页面URL | https://help.vowel.com/en/collections/2059983-vowel-faq |
| 隐私政策页面URL | https://www.vowel.com/legal/privacy-policy |
| 支持的语言 | 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"
} | |