draw.io for Notion

Insert draw.io diagrams in Notion pages and edit them

draw.io for Notion là gì?

draw.io for Notion là một tiện ích mở rộng Chrome được phát triển bởi https://diagrams.net, và tính năng chính của nó là "Insert draw.io diagrams in Notion pages and edit them".

Ả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 draw.io for Notion

Tải xuống các tệp mở rộng draw.io for Notion 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

                        draw.io for Notion is a Chrome extension designed to enable you to insert and edit draw.io diagrams and whiteboards directly into Notion pages.

After installing, pin the draw.io extension. When editing a Notion page, an option to insert a diagram is offered when clicking the extension icon.

After creating new diagrams, simply click on the diagram to start editing again.                    

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

Tên draw.io for Notion draw.io for Notion
ID plhaalebpkihaccllnkdaokdoeaokmle
URL Chính Thức https://chromewebstore.google.com/detail/drawio-for-notion/plhaalebpkihaccllnkdaokdoeaokmle
Mô tả Insert draw.io diagrams in Notion pages and edit them
Kích Thước Tệp 38.86 KB
Số Lần Cài Đặt 44,443
Phiên Bản Hiện Tại 1.2.5
Cập Nhật Lần Cuối 2023-09-13
Ngày Phát Hành 2021-10-21
Đánh Giá 3.24/5 Tổng số 45 Đánh Giá
Nhà Phát Triển https://diagrams.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.diagrams.net
URL Trang Trợ Giúp https://www.drawio.com/blog/drawio-notion
URL Trang Chính Sách Bảo Mật https://www.drawio.com/trust
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "draw.io for Notion",
    "version": "1.2.5",
    "description": "Insert draw.io diagrams in Notion pages and edit them",
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "host_permissions": [
        "https:\/\/*.notion.so\/*",
        "https:\/\/*.notion.site\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.notion.so\/*",
                "https:\/\/*.notion.site\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 3
}