Add to Calendar (powered by AI)

The most accurate and intelligent way to add events to your calendar from any webpage.

Add to Calendar (powered by AI)란 무엇입니까?

Add to Calendar (powered by AI)은(는) faizanali에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The most accurate and intelligent way to add events to your calendar from any webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Add to Calendar (powered by AI) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever find yourself copying events from webpages into your calendar app? It's annoying, manual, and error-prone.

Calendify simplifies that for you! It extracts events out of the webpage you're on and lets you add the event (or multiple events) to your favorite calendar app! Supported: Google Calendar, Yahoo, iCal, Outlook

It will parse out event details and let you edit them before adding to your calendar. Multiple events are a breeze!

## Highlighting events
Too many events on the page? Just highlight the one you're interested in, right click and Calendify!

Shortcut:
Use Ctrl + Shift + E to trigger the extension on Windows,
Cmd + Shift + E on Mac!

Notes: 
- As a free extension, it will get better over time, feedback and bug reports are welcome :)
- The Google Events webpage is not supported. It has great add-to-calendar functionality already.
- Email inboxes are not fully supported. Coming at a future date!                    

확장 프로그램 기본 정보

이름 Add to Calendar (powered by AI) Add to Calendar (powered by AI)
ID lfkaomidfbanpoljidfdcocehjgkpdpp
공식 URL https://chromewebstore.google.com/detail/add-to-calendar-powered-b/lfkaomidfbanpoljidfdcocehjgkpdpp
설명 The most accurate and intelligent way to add events to your calendar from any webpage.
파일 크기 254 KB
설치 횟수 39
현재 버전 0.0.5
최근 업데이트 2023-08-29
출시 날짜 2023-08-04
평점 5.00/5 총 2 개의 평점
개발자 faizanali
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://faizanali.com/calendify/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add to Calendar (powered by AI)",
    "description": "The most accurate and intelligent way to add events to your calendar from any webpage.",
    "author": "[email protected]",
    "version": "0.0.5",
    "manifest_version": 3,
    "action": {
        "default_title": "Add events to your calendar from any webpage with ease.",
        "default_popup": "index.html",
        "default_icon": "calicon.png"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "icons": {
        "16": "calicon-16x16.png",
        "48": "calicon-48x48.png",
        "128": "calicon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "scripting"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            }
        }
    }
}