TimeWriter: Save Time Scheduling Meetings

Automatically writes time slots from your calendar saving you hours from the repetitive task of writing out meeting times.

什麼是TimeWriter: Save Time Scheduling Meetings?

TimeWriter: Save Time Scheduling Meetings是由https://timewriter.co開發的Chrome擴展程式,該擴展的主要功能是“Automatically writes time slots from your calendar saving you hours from the repetitive task of writing out meeting times.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載TimeWriter: Save Time Scheduling Meetings擴展crx文件

下載TimeWriter: Save Time Scheduling Meetings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        While scheduling links like Calendly are common today, often scheduling a meeting still depends on written time slots. That's when TimeWriter is incredibly useful.

Here's how TimeWriter works:

1) Select time slots on Google Calendar and then click "Add to Clipboard." TimeWriter saves these times to your clipboard, appearing like this:

Mon, Jan 2: 9a-11a EST
Tue, Jan 3: 8a-9a, 10a-12p EST

2) For time zone adjustments, type and select any city worldwide. TimeWriter automatically adjusts your clipboard times to match your recipient's time zone, like this:

Mon, Jan 2: 2p-4p CET
Tue, Jan 3: 1p-2p, 3p-5p CET

3) When ready, paste it into your message and hit send. 🚀

TimeWriter is free to use. If needed, you can upgrade to TimeWriter Pro ($1/mo), which removes the "Time Slots by TimeWriter" email signature.

Add TimeWriter and try it now!                    

擴展基本資訊

名稱 TimeWriter: Save Time Scheduling Meetings TimeWriter: Save Time Scheduling Meetings
ID dkcgdknimgiffognmpiheegpfkkmcapk
官方網址 https://chromewebstore.google.com/detail/timewriter-save-time-sche/dkcgdknimgiffognmpiheegpfkkmcapk
簡介 Automatically writes time slots from your calendar saving you hours from the repetitive task of writing out meeting times.
檔案大小 609 KB
安裝次數 59
目前版本 1.3.5
更新時間 2024-02-28
上架時間 2023-04-06
評分 5.00/5 共 8 次評分
開發者 https://timewriter.co
電子郵箱 [email protected]
付費類型 in_app
擴展官網 https://timewriter.co
隱私政策頁面URL https://timewriter.co/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TimeWriter: Save Time Scheduling Meetings",
    "description": "Automatically writes time slots from your calendar saving you hours from the repetitive task of writing out meeting times.",
    "version": "1.3.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "gcal.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/*"
            ],
            "js": [
                "gmail.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/calendar.google.com\/*",
        "https:\/\/mail.google.com\/mail\/u\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/timewriter-icon-black-on-transparent.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "TimeWriter",
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ]
}