Offset start-times in Google Calendar
Offsets start-times by default when adding a Google Calendar event, using a user-configured number of minutes.
Offset start-times in Google Calendarとは何ですか?
Offset start-times in Google Calendarはchristopher.x.gerberによって開発されたChromeの拡張機能で、その主な機能は「Offsets start-times by default when adding a Google Calendar event, using a user-configured number of minutes.」です。
拡張機能のスクリーンショット
Offset start-times in Google Calendar拡張機能のCRXファイルをダウンロード
Offset start-times in Google Calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Want to start all of your meetings at 5 minutes after the hour by default? That's what this extension does! It offsets start-times by default when adding a new event in the Google Calendar web UI, using an offset you configure (default 5 minutes). Works with the Speedy Meetings setting in Google Calendar too, so you can leave some room before and after your meeting. Back-to-back meetings are draining; give your attendees time to eat!
Installing: After adding the extension, you need to refresh your Google Calendar page in order for it to work 拡張機能の基本情報
| 名前 | |
| ID | lpgnioiegbijnllaabmnnjflkfnjnhbn |
| 公式URL | https://chromewebstore.google.com/detail/offset-start-times-in-goo/lpgnioiegbijnllaabmnnjflkfnjnhbn |
| 説明 | Offsets start-times by default when adding a Google Calendar event, using a user-configured number of minutes. |
| ファイルサイズ | 63.72 KB |
| インストール数 | 2,000 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2023-04-05 |
| 公開日 | 2023-03-30 |
| 評価 | 4.83/5 合計 6 レビュー |
| 開発者 | christopher.x.gerber |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/gerbus/chrome-google-calendar-meeting-start-times |
| ヘルプページのURL | https://github.com/gerbus/chrome-google-calendar-meeting-start-times/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Offset start-times in Google Calendar",
"description": "Offsets start-times by default when adding a Google Calendar event, using a user-configured number of minutes.",
"version": "1.0.1",
"manifest_version": 3,
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/calendar.google.com\/calendar\/*"
],
"js": [
"contentScript.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
},
"icons": {
"16": "icon_16.png",
"32": "icon_32.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
} | |