Notion x Excalidraw Helper
A chrome extension to copy graph data between notion and excalidraw
什麼是Notion x Excalidraw Helper?
Notion x Excalidraw Helper是由cuberl.developer開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension to copy graph data between notion and excalidraw”。
擴展截圖
下載Notion x Excalidraw Helper擴展crx文件
下載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 |
ID | fbpnfcemlpcledmlpjmphpkehgokghmg |
官方網址 | 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\/*" ] } ] } |