Notion x Excalidraw Helper

A chrome extension to copy graph data between notion and excalidraw

O que é Notion x Excalidraw Helper?

Notion x Excalidraw Helper é uma extensão do Chrome desenvolvida por cuberl.developer, e sua principal característica é "A chrome extension to copy graph data between notion and excalidraw".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Notion x Excalidraw Helper

Baixe arquivos de extensão Notion x Excalidraw Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Notion x Excalidraw Helper Notion x Excalidraw Helper
ID fbpnfcemlpcledmlpjmphpkehgokghmg
URL Oficial https://chromewebstore.google.com/detail/notion-x-excalidraw-helpe/fbpnfcemlpcledmlpjmphpkehgokghmg
Descrição A chrome extension to copy graph data between notion and excalidraw
Tamanho do Arquivo 656 KB
Contagem de Instalações 120
Versão Atual 1.0.3
Última Atualização 2024-01-22
Data de Publicação 2023-10-18
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor cuberl.developer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
URL da Página de Ajuda https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
Idiomas Suportados 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\/*"
            ]
        }
    ]
}