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
Eメール [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\/*"
            ]
        }
    ]
}