Notion x Excalidraw Helper

A chrome extension to copy graph data between notion and excalidraw

Notion x Excalidraw Helperคืออะไร?

Notion x Excalidraw Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cuberl.developer และคุณลักษณะหลักของมันคือ "A chrome extension to copy graph data between notion and excalidraw"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion x Excalidraw Helper

ดาวน์โหลดไฟล์ส่วนขยาย Notion x Excalidraw Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Notion x Excalidraw Helper Notion x Excalidraw Helper
ID fbpnfcemlpcledmlpjmphpkehgokghmg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notion-x-excalidraw-helpe/fbpnfcemlpcledmlpjmphpkehgokghmg
คำอธิบาย A chrome extension to copy graph data between notion and excalidraw
ขนาดไฟล์ 656 KB
จำนวนการติดตั้ง 120
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2024-01-22
วันที่เผยแพร่ 2023-10-18
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา cuberl.developer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
URL หน้าช่วยเหลือ https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
ภาษาที่รองรับ 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\/*"
            ]
        }
    ]
}