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.”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Offset start-times in Google Calendar Offset start-times in Google Calendar
ID lpgnioiegbijnllaabmnnjflkfnjnhbn
官方網址 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
電子郵箱 [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"
    }
}