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

Add to Calendar (powered by AI) là một tiện ích mở rộng Chrome được phát triển bởi faizanali, và tính năng chính của nó là "The most accurate and intelligent way to add events to your calendar from any webpage.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Add to Calendar (powered by AI)

Tải xuống các tệp mở rộng Add to Calendar (powered by AI) 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

                        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!                    

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

Tên Add to Calendar (powered by AI) Add to Calendar (powered by AI)
ID lfkaomidfbanpoljidfdcocehjgkpdpp
URL Chính Thức https://chromewebstore.google.com/detail/add-to-calendar-powered-b/lfkaomidfbanpoljidfdcocehjgkpdpp
Mô tả The most accurate and intelligent way to add events to your calendar from any webpage.
Kích Thước Tệp 254 KB
Số Lần Cài Đặt 39
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2023-08-29
Ngày Phát Hành 2023-08-04
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển faizanali
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://faizanali.com/calendify/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}