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 |
| 官方網址 | 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"
} | |