Notion x Excalidraw Helper

A chrome extension to copy graph data between notion and excalidraw

Notion x Excalidraw Helper là gì?

Notion x Excalidraw Helper là một tiện ích mở rộng Chrome được phát triển bởi cuberl.developer, và tính năng chính của nó là "A chrome extension to copy graph data between notion and excalidraw".

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

Tải xuống tệp CRX của tiện ích mở rộng Notion x Excalidraw Helper

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

                        A chrome extension to copy graph between notion and Excalidraw. User can copy the graph(or scene data) by select the graph they want and using command(or ctrl) + C from Excalidraw and then paste it into Notion. This extension will render the Excalidraw scene data to an image and paste it as an image block to notion. And user can copy the graph from notion image block pasted above by click the button in the block and then paste back to Excalidraw and modify it.  It's really helpful for those user who loves Notion and Excalidraw and want to make figures by Excalidraw and use them in Notion.                    

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

Tên Notion x Excalidraw Helper Notion x Excalidraw Helper
ID fbpnfcemlpcledmlpjmphpkehgokghmg
URL Chính Thức https://chromewebstore.google.com/detail/notion-x-excalidraw-helpe/fbpnfcemlpcledmlpjmphpkehgokghmg
Mô tả A chrome extension to copy graph data between notion and excalidraw
Kích Thước Tệp 656 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2024-01-22
Ngày Phát Hành 2023-10-18
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển cuberl.developer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
URL Trang Trợ Giúp https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to copy graph data between notion and excalidraw",
    "version": "1.0.3",
    "name": "Notion x Excalidraw Helper",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*",
                "https:\/\/notion.so\/*"
            ],
            "js": [
                "main.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "@excalidraw\/*"
            ],
            "matches": [
                "https:\/\/notion.so\/*",
                "https:\/\/www.notion.so\/*"
            ]
        }
    ]
}