Notion - Add to calendar

This extension create a link for save notion event in google calendar

Notion - Add to calendar là gì?

Notion - Add to calendar là một tiện ích mở rộng Chrome được phát triển bởi https://hugolevet.fr, và tính năng chính của nó là "This extension create a link for save notion event in google calendar".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Notion - Add to calendar

Tải xuống các tệp mở rộng Notion - Add to calendar 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

                        You can add simply notion's events in your calendar.
For the moment, just google calendar is supported.                    

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

Tên Notion - Add to calendar Notion - Add to calendar
ID fmopabaabflalnnhjknhemmpenfjlldh
URL Chính Thức https://chromewebstore.google.com/detail/notion-add-to-calendar/fmopabaabflalnnhjknhemmpenfjlldh
Mô tả This extension create a link for save notion event in google calendar
Kích Thước Tệp 14.5 KB
Số Lần Cài Đặt 1,846
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2021-09-10
Đánh Giá 2.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://hugolevet.fr
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://hugolevet.fr/notion-add-to-calendar/
URL Trang Chính Sách Bảo Mật https://hugolevet.fr/p/disable-cookies-privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.1.0",
    "name": "Notion - Add to calendar",
    "description": "This extension create a link for save notion event in google calendar",
    "offline_enabled": true,
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*",
                "*:\/\/*.notion.site\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}