Notion x Excalidraw Helper

A chrome extension to copy graph data between notion and excalidraw

Was ist Notion x Excalidraw Helper?

Notion x Excalidraw Helper ist eine Chrome-Erweiterung, die von cuberl.developer entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension to copy graph data between notion and excalidraw".

Erweiterungsscreenshots

Notion x Excalidraw Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notion x Excalidraw Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Notion x Excalidraw Helper Notion x Excalidraw Helper
ID fbpnfcemlpcledmlpjmphpkehgokghmg
Offizielle URL https://chromewebstore.google.com/detail/notion-x-excalidraw-helpe/fbpnfcemlpcledmlpjmphpkehgokghmg
Beschreibung A chrome extension to copy graph data between notion and excalidraw
Dateigröße 656 KB
Installationsanzahl 120
Aktuelle Version 1.0.3
Letztes Update 2024-01-22
Veröffentlichungsdatum 2023-10-18
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler cuberl.developer
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
Hilfeseite URL https://github.com/CuberL/chrome-extension-notion-excalidraw-helper
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}