Google Calendar Description Prefiller

This extension prefills the description field when creating events in Google Calendar.

Google Calendar Description Prefiller란 무엇입니까?

Google Calendar Description Prefiller은(는) DX Heroes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension prefills the description field when creating events in Google Calendar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Google Calendar Description Prefiller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Google Calendar Description Prefiller is a powerful Chrome extension designed to streamline your scheduling process on Google Calendar. With just a few clicks, you can automatically fill in the description of your events based on predefined options, saving you time and effort.

Key Features:

- Automatic Description Filling: Select from predefined options to automatically fill the description field of your events. You no longer need to type repetitive information.
- Customizable Options: Customize the predefined options according to your preferences and needs. Set up your choices once, and let the extension do the work for you.
- Easy-to-use Interface: Seamlessly integrated with Google Calendar, our extension provides a user-friendly interface that doesn't interfere with your usual calendar navigation.
- Efficient and Lightweight: Designed with efficiency in mind, our extension won't slow down your browser or affect other tabs.

Google Calendar Description Prefiller is perfect for users who frequently schedule events and meetings on Google Calendar and want to streamline their event creation process. It's particularly helpful for professionals, students, and anyone who wants to boost their productivity.

Install "Google Calendar Description Prefiller" today and make scheduling events a breeze!                    

확장 프로그램 기본 정보

이름 Google Calendar Description Prefiller Google Calendar Description Prefiller
ID coojcmcomfnjnpeejpnojnokdjackihp
공식 URL https://chromewebstore.google.com/detail/google-calendar-descripti/coojcmcomfnjnpeejpnojnokdjackihp
설명 This extension prefills the description field when creating events in Google Calendar.
파일 크기 232 KB
설치 횟수 75
현재 버전 1.0
최근 업데이트 2023-06-02
출시 날짜 2023-06-02
개발자 DX Heroes
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/prokopsimek/google-calendar-description-prefiller/
도움말 페이지 URL https://github.com/prokopsimek/google-calendar-description-prefiller/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Calendar Description Prefiller",
    "description": "This extension prefills the description field when creating events in Google Calendar.",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}