Notion x Excalidraw Helper

A chrome extension to copy graph data between notion and excalidraw

¿Qué es Notion x Excalidraw Helper?

Notion x Excalidraw Helper es una extensión de Chrome desarrollada por cuberl.developer, y su función principal es "A chrome extension to copy graph data between notion and excalidraw".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Notion x Excalidraw Helper

Descarga archivos de extensión Notion x Excalidraw Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Notion x Excalidraw Helper Notion x Excalidraw Helper
ID fbpnfcemlpcledmlpjmphpkehgokghmg
URL Oficial https://chromewebstore.google.com/detail/notion-x-excalidraw-helpe/fbpnfcemlpcledmlpjmphpkehgokghmg
Descripción A chrome extension to copy graph data between notion and excalidraw
Tamaño del Archivo 656 KB
Cantidad de Instalaciones 120
Versión Actual 1.0.3
Última Actualización 2024-01-22
Fecha de Publicación 2023-10-18
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador cuberl.developer
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
URL de la Página de Ayuda https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
Idiomas Soportados 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\/*"
            ]
        }
    ]
}