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 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\/*"
            ]
        }
    ]
}