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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}