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 |
| Eメール | [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"
} | |