Highlight to Google Calendar

Highlight text and open popup to automatically add events to google calendar.

Highlight to Google Calendar란 무엇입니까?

Highlight to Google Calendar은(는) bazeblackwood에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight text and open popup to automatically add events to google calendar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Highlight to Google Calendar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A chrome extension that allows you to turn highlighted text into Google Calendar events. (Google Calendar used to do this automatically when entering events, but no longer 😿)

Simply highlight some text with an event date and time in it, and the result will be in the popup when you click the extension icon when you click the top right. The extension will generate a shorter a title for you, and put the remaining details in the description of the event. Click "Create Event" after a successful parse and it will take you to the event creation dialog in Google Calendar.                    

확장 프로그램 기본 정보

이름 Highlight to Google Calendar Highlight to Google Calendar
ID eehlbikncmbbmebknibmlajbmhjiepbh
공식 URL https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh
설명 Highlight text and open popup to automatically add events to google calendar.
파일 크기 295 KB
설치 횟수 616
현재 버전 1.0
최근 업데이트 2018-06-03
출시 날짜 2018-06-02
평점 3.86/5 총 7 개의 평점
개발자 bazeblackwood
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://blackwood.io
도움말 페이지 URL https://github.com/blackwood/highlight-to-google-calendar/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight to Google Calendar",
    "description": "Highlight text and open popup to automatically add events to google calendar.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/build\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}