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 là gì?

TimeWriter: Save Time Scheduling Meetings là một tiện ích mở rộng Chrome được phát triển bởi https://timewriter.co, và tính năng chính của nó là "Automatically writes time slots from your calendar saving you hours from the repetitive task of writing out meeting times.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TimeWriter: Save Time Scheduling Meetings

Tải xuống các tệp mở rộng TimeWriter: Save Time Scheduling Meetings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TimeWriter: Save Time Scheduling Meetings TimeWriter: Save Time Scheduling Meetings
ID dkcgdknimgiffognmpiheegpfkkmcapk
URL Chính Thức https://chromewebstore.google.com/detail/timewriter-save-time-sche/dkcgdknimgiffognmpiheegpfkkmcapk
Mô tả Automatically writes time slots from your calendar saving you hours from the repetitive task of writing out meeting times.
Kích Thước Tệp 609 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 1.3.5
Cập Nhật Lần Cuối 2024-02-28
Ngày Phát Hành 2023-04-06
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://timewriter.co
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://timewriter.co
URL Trang Chính Sách Bảo Mật https://timewriter.co/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}